-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 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
{
"name": "todomvc",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack.dev.js",
"start:test": "NODE_ENV=test webpack-dev-server --config webpack.test.js",
"build": "NODE_ENV=production webpack -p --config webpack.prod.js",
"test": "NODE_ENV=test jest --watch",
"lint": "eslint --color './**/*.js?(x)'"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.2.0",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link-schema": "^1.2.2",
"classnames": "^2.2.6",
"graphql": "^14.3.0",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"pluralize": "^7.0.0",
"react": "^16.8.6",
"react-apollo": "^2.5.5",
"react-dom": "^16.8.6",
"react-router5": "^7.1.0",
"router5": "^7.0.2",
"router5-plugin-browser": "^7.0.2",
"router5-plugin-logger": "^7.0.2",
"todomvc-app-css": "^2.2.0",
"todomvc-common": "^1.0.5",
"prop-types": "latest"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-codegen": "^3.0.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.5.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-dom": "^3.2.2",
"jest-environment-jsdom-thirteen": "^1.0.1",
"jest-fetch-mock": "^2.1.2",
"jest-junit": "^6.4.0",
"prettier": "^1.15.2",
"prettier-eslint": "^8.8.2",
"raw-loader": "^2.0.0",
"react-testing-library": "^6.0.0",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"uuid": "^3.3.2",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}