-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "react-moving-forward",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reach/router": "^1.2.1",
"@types/jest": "23.3.9",
"@types/node": "^10.12.5",
"@types/ramda": "^0.25.41",
"@types/reach__router": "^1.2.2",
"@types/react": "^16.7.3",
"@types/react-dom": "16.0.9",
"@types/styled-components": "^4.0.3",
"ramda": "^0.25.0",
"react": "^16.7.0-alpha.2",
"react-cache": "^2.0.0-alpha.1",
"react-dom": "^16.7.0-alpha.2",
"react-scripts": "2.1.1",
"styled-components": "^4.0.3"
},
"resolutions": {
"scheduler": "0.12.0-alpha.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"tslint": "tslint --project . --format codeFrame",
"lint": "npm run tslint && npx tsc",
"format": "prettier --config package.json --loglevel warn --write \"*(src)/**/*.{js,jsx,ts,tsx}\"",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"prettier": "1.15.2",
"tslint": "^5.11.0",
"typescript": "3.1.6"
}
}