-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "create-react-app-starter",
"version": "1.0.0",
"description": "",
"keywords": [],
"dependencies": {
"@types/history": "^4.7.2",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.2",
"@types/styled-components": "4.0.3",
"@types/webpack-env": "^1.13.7",
"prettier": "^1.16.4",
"react": "16.8.4",
"react-app-rewired": "2.1.1",
"react-dom": "16.8.4",
"react-scripts": "3.0.1",
"remeda": "^0.0.11",
"rxjs": "6.2.2",
"styled-components": "^4.1.3",
"typeless": "^1.1.0",
"typeless-form": "^1.1.0",
"typeless-router": "^1.1.0",
"typescript": "^3.5.1"
},
"scripts": {
"prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"tsc": "tsc",
"lint": "eslint --ext ts,tsx src",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": "react-app"
}
}