-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
95 lines (95 loc) · 2.99 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "basis",
"version": "1.71.0",
"description": "Basis Design System",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"scripts": {
"start": "cd website && npm run clean && npm start",
"prettier": "prettier --write \"**/*.{js,json,css,md}\"",
"lint": "eslint --max-warnings 0 \"**/*.js\"",
"test": "cross-env BABEL_ENV=cjs jest",
"percy": "percy snapshot public -c .percy.js",
"prebuild-basis": "rimraf dist",
"build-basis:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src -d dist --ignore \"src/**/*.test.js\"",
"build-basis:esm": "cross-env NODE_ENV=production BABEL_ENV=esm babel src -d dist/esm --ignore \"src/**/*.test.js\"",
"build-basis": "npm run build-basis:cjs && npm run build-basis:esm",
"prebuild": "rimraf public",
"build": "cd website && npm run build && mv public .. && cd ..",
"prepublishOnly": "npm run build-basis",
"postinstall": "(test -d website && npm run install-website && husky install) || true",
"install-website": "cd website && npm install && cd .."
},
"dependencies": {
"date-fns": "2.21.1",
"deep-object-diff": "1.1.0",
"deepmerge": "4.2.2",
"downshift": "5.4.7",
"klona": "2.0.4",
"mem": "6.1.1",
"nanoid": "3.1.22",
"polished": "3.7.1",
"react-keyed-flatten-children": "1.3.0"
},
"peerDependencies": {
"@emotion/core": "^10.0.28",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/preset-env": "7.14.1",
"@babel/preset-react": "7.13.13",
"@emotion/babel-preset-css-prop": "10.2.1",
"@emotion/core": "10.1.1",
"@percy/agent": "0.28.6",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "10.4.9",
"@testing-library/react-hooks": "3.7.0",
"@testing-library/user-event": "12.8.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"cross-env": "7.0.3",
"eslint": "7.25.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jest-dom": "3.8.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "3.10.2",
"husky": "5.2.0",
"identity-obj-proxy": "3.0.0",
"inquirer": "^8.1.5",
"jest": "26.6.3",
"mq-polyfill": "1.1.8",
"prettier": "2.2.1",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-test-renderer": "16.14.0",
"rimraf": "3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/LatitudeFinancialOSS/basis"
},
"bugs": {
"url": "https://github.com/LatitudeFinancialOSS/basis/issues"
},
"keywords": [
"design-system",
"react",
"components",
"library",
"emotion"
],
"files": [
"dist"
],
"license": "MIT"
}