-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "wp-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.17.1",
"core-js": "^2.5.3",
"localforage": "^1.5.5",
"lodash": "^4.17.4",
"prettier": "^1.9.2",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-image": "^1.3.1",
"react-lazyload": "^2.3.0",
"react-loadable": "^5.3.1",
"react-loading": "^1.0.3",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts-ts": "2.8.0",
"redux": "^3.7.2",
"redux-persist": "^5.4.0",
"redux-saga": "^0.16.0",
"styled-components": "^2.2.4",
"styled-components-ts": "^0.0.8",
"styled-normalize": "^4.0.0",
"styled-system": "^2.2.1",
"typeface-roboto": "^0.0.45"
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": ["prettier --double-quote --write"]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test":
"react-scripts-ts test --env=jsdom --setupFiles=raf/polyfill --setupTestFrameworkScriptFile=./setupTests.ts",
"eject": "react-scripts-ts eject",
"lint:css": "stylelint './src/**/*.tsx'"
},
"jest": {
"snapshotSerializers": ["enzyme-to-json/serializer"],
"collectCoverageFrom": [
"src/**/*.{ts, tsx}",
"!<rootDir>/node_modules/",
"!src/@types/**/*.d.ts"
]
},
"devDependencies": {
"@types/core-js": "^0.9.43",
"@types/enzyme": "^3.1.6",
"@types/enzyme-adapter-react-16": "^1.0.1",
"@types/enzyme-to-json": "^1.5.0",
"@types/jest": "^22.0.1",
"@types/localforage": "^0.0.34",
"@types/lodash": "^4.14.91",
"@types/material-ui": "^0.21.1",
"@types/node": "^8.5.2",
"@types/react": "^16.0.30",
"@types/react-dom": "^16.0.3",
"@types/react-lazyload": "^2.2.4",
"@types/react-loadable": "^5.3.0",
"@types/react-redux": "^5.0.15",
"@types/react-router": "^4.0.19",
"@types/react-router-dom": "^4.2.3",
"@types/redux": "^3.6.0",
"@types/redux-devtools": "^3.0.42",
"@types/redux-devtools-extension": "^2.13.2",
"@types/redux-logger": "^3.0.5",
"@types/redux-persist": "^4.3.1",
"@types/redux-saga": "^0.10.5",
"@types/webpack-env": "^1.13.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-redux": "^0.1.7",
"enzyme-to-json": "^3.3.0",
"jsdom-quokka-plugin": "^1.0.11",
"lint-staged": "^6.0.0",
"material-ui": "^1.0.0-beta.40",
"react-perf-devtool": "^3.0.2",
"redux-devtools": "^3.4.1",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-test-utils": "^0.2.2",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.2.1",
"ts-node": "^5.0.1",
"tslint-config-prettier": "^1.10.0",
"tslint-immutable": "^4.5.0",
"tslint-react": "^3.5.1",
"typesafe-actions": "^1.1.0",
"typescript-styled-plugin": "^0.6.0"
}
}