-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "react-fundamental-workshop",
"title": "Modern React Basic 😎",
"version": "1.0.0",
"description": "Material for React Fundamental Workshop",
"main": "src/index.js",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:exercises": "npm run test -- testing.*exercises\\/ --onlyChanged",
"setup": "node ./scripts/setup"
},
"author": "DeathSy",
"license": "ISC",
"devDependencies": {
"@kentcdodds/react-workshop-app": "^2.5.0",
"cross-spawn": "^7.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react-scripts": "^3.4.0"
},
"dependencies": {
"chalk": "^3.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"styled-components": "^5.0.1",
"vanilla-tilt": "^1.7.0"
},
"jest": {
"collectCoverageFrom": [
"src/final/**/*.js"
]
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"babel-preset-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"
]
}
}