-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "react-cheat-sheet",
"description": "React Cheat Sheet",
"version": "0.0.1",
"author": "Michael Chan",
"homepage": "http://reactcheatsheet.com",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/chantastic/react-cheat-sheet.git"
},
"bugs": {
"url": "https://github.com/chantastic/react-cheat-sheet/issues"
},
"devDependencies": {
"all-contributors-cli": "^6.12.0",
"react-scripts": "^3.3.0"
},
"dependencies": {
"classnames": "^2.2.5",
"cxs": "^6.2.0",
"gh-pages": "^2.2.0",
"lodash": "^4.17.4",
"normalize-css": "^2.3.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sw-precache": "^5.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && sw-precache --config=sw-precache-config.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"prettier": "prettier --trailing-comma es5 --write \"src/**/*.js\"",
"deploy": "gh-pages -d build",
"add-contribs": "all-contributors add",
"generate-contribs": "all-contributors generate"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}