forked from Thinkful-Ed/spaced-repetition
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
{
"name": "spaced-repitition",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"classnames": "^2.2.6",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.5"
},
"engines": {
"node": "12.20.1"
},
"scripts": {
"start": "react-scripts start",
"eject": "react-scripts eject",
"build": "react-scripts build",
"prebuild": "CI=true react-scripts test --colors",
"test": "react-scripts test",
"deploy": "vercel --prod",
"predeploy": "npm run build",
"cypress:clear": "cypress cache clear",
"cypress:verify": "cypress verify",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"cypress": "^6.8.0",
"jsonwebtoken": "^8.5.0",
"unfetch": "^4.1.0"
}
}