-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.76 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.76 KB
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
{
"name": "cgui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.5",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"classnames": "^2.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"node-sass": "^4.13.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.4.0",
"sinon": "^8.1.1"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"sync": "bit import && bit list"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"bit": {
"env": {
"compiler": "bit.envs/compilers/react@1.0.14"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "yarn",
"overrides": {
"utilities": {
"env": {
"compiler": "bit.envs/compilers/babel@7.0.4"
}
}
}
},
"resolutions": {
"react-scripts/terser-webpack-plugin/serialize-javascript": "^3.1.0",
"react-scripts/webpack-dev-server/yargs/yargs-parser": "^13.1.2",
"react-scripts/resolve-url-loader/adjust-sourcemap-loader/object-path": "^0.11.5",
"react-scripts/react-dev-utils/immer": "^8.0.1"
}
}