-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.02 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.02 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
{
"name": "cs01-team-grace-01",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "run-p build:**",
"build:app": "react-scripts build",
"build:lambda": "netlify-lambda build server --config webpack.functions.js",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:verify": "cypress verify",
"lint": "eslint server src",
"start:lambda": "netlify-lambda serve server",
"start:lambda:dev": "cross-env NODE_ENV=development netlify-lambda serve server",
"start:react": "react-scripts start",
"start": "run-p start:lambda:dev start:react",
"test:e2e": "cross-env BROWSER=none start-server-and-test start http://localhost:3000 cy:run",
"test:unit": "react-scripts test",
"test": "cross-env CI=true run-s test:unit test:e2e"
},
"dependencies": {
"@reach/router": "^1.2.1",
"apollo-boost": "^0.4.4",
"apollo-server-lambda": "^2.9.6",
"axios": "^0.19.0",
"dotenv": "^8.1.0",
"graphql": "^14.5.8",
"mongoose": "^5.7.5",
"netlify-lambda": "^1.6.3",
"npm-run-all": "^4.1.5",
"react": "^16.10.2",
"react-apollo": "^3.1.2",
"react-dom": "^16.10.2",
"react-scripts": "^3.2.0",
"styled-components": "^4.4.0",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"cross-env": "^6.0.3",
"cypress": "^3.5.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint-plugin-cypress": "^2.7.0",
"faker": "^4.1.0",
"jest-styled-components": "^6.3.3",
"start-server-and-test": "^1.10.6"
},
"eslintConfig": {
"env": {
"cypress/globals": true
},
"extends": "react-app",
"plugins": [
"eslint-plugin-cypress"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}