-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "instant-website",
"version": "0.9.0",
"scripts": {
"fmt:check": "prettier -c src",
"fmt:fix": "prettier -w src",
"test": "react-scripts test --env=jsdom",
"test:all": "react-scripts test --env=jsdom --watchAll=false",
"cp-deps": "cp node_modules/bulma/css/*.css public/css/",
"start": "npm run cp-deps && react-scripts start",
"build": "npm run cp-deps && react-scripts build",
"version": "npm run build",
"postversion": "git push --follow-tags"
},
"dependencies": {
"bulma": "^0.9.3",
"history": "^5.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-url-query": "^1.5.0"
},
"devDependencies": {
"prettier": "^2.4.1",
"react-scripts": "^4.0.3"
},
"author": {
"name": "Michael Currin",
"url": "https://MichaelCurrin.github.io/"
},
"license": "MIT",
"homepage": "https://instant-website.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/MichaelCurrin/instant-website.git"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}