-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.94 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
{
"name": "retroboard",
"version": "0.0.1",
"private": true,
"homepage": "https://retroboard.github.io/board",
"dependencies": {
"@material-ui/core": "^3.9.4",
"@material-ui/icons": "^3.0.2",
"babel-polyfill": "^6.26.0",
"orbit-db": "^0.19.10",
"prop-types": "^15.7.2",
"ramda": "^0.25.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^3.3.0",
"rxjs": "^5.5.6",
"sweetalert2": "^9.5.3",
"typeface-roboto": "0.0.54",
"uuid": "^3.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --testPathIgnorePatterns=src/__tests__/journey --env=jsdom --watchAll=false",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"format": "prettier --write */**/*.js",
"lint": "eslint --ignore-path .gitignore . --fix",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"test:cypress": "start-server-and-test start http://localhost:3000 cypress",
"cypress": "cypress run"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test && npm run test:cypress",
"pre-push": "npm run lint && npm test && npm run test:cypress"
}
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cypress": "^3.8.1",
"cypress-image-snapshot": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-react": "^7.17.0",
"gh-pages": "^1.1.0",
"husky": "^3.1.0",
"prettier": "1.11.1",
"start-server-and-test": "^1.10.6"
},
"engines": {
"node": "ˆ10.11"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}