-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "website-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"airbrake-js": "^1.6.8",
"cross-fetch": "^3.1.5",
"mirrorx": "^0.2.13",
"mousetrap": "^1.6.3",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "1.1.4",
"react-sortable-hoc": "^0.8.4",
"service-worker-mock": "^1.12.0",
"styled-components": "^3.4.10"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build; node updateBuildCacheVersion.js; cp _redirects build/.",
"test:build": "react-scripts build",
"serve": "serve --no-clipboard --single build -l 3000",
"test": "react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run-record": "cypress run --record",
"cypress:start-server-test-norecord": "start-server-and-test serve http://localhost:3000 cypress:run",
"cypress:start-server-test-record": "start-server-and-test serve http://localhost:3000 cypress:run-record",
"local:e2e": "npm run test:build && npm run cypress:start-server-test-norecord",
"ci:e2e": "npm run test:build && npm run cypress:start-server-test-record",
"lint": "standard --fix",
"precommit": "standard"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.1.1",
"axe-core": "^3.3.2",
"cypress": "^3.4.1",
"cypress-axe": "^0.5.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^23.1.0",
"react-test-renderer": "^16.10.2",
"serve": "~10.0.2",
"sinon": "^6.3.5",
"standard": "^11.0.1",
"start-server-and-test": "=1.7.11"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/build"
],
"globals": [
"cy",
"Cypress"
],
"env": {
"jest": true
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}
}