-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.11 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
{
"name": "react-homepage",
"homepage": "http://adambowl.es",
"version": "0.1.0",
"private": true,
"scripts": {
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build && npm run compress",
"compress": "find build/. -type f \\( -name '*.js' -or -name '*.css' \\) -exec sh -c 'gzip -c \"{}\" > \"{}.gz\"' \\;",
"test": "react-scripts test --env=jsdom"
},
"dependencies": {
"classnames": "^2.2.5",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"font-awesome": "^4.7.0",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"npm-run-all": "^4.0.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.6.1",
"react-scripts": "1.0.10",
"roboto-fontface": "^0.7.0"
}
}