-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "ski-game",
"version": "0.1.0",
"private": true,
"homepage": "https://tscizzle.github.io/ski-game",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"phaser": "^3.15.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"npm-run-all": "^4.1.5"
},
"scripts": {
"wipe-css": "rm -r src/stylesheets ||:",
"build-css": "node-sass src/ -o src/stylesheets",
"watch-css": "node-sass src/ -o src/stylesheets --watch --recursive",
"start-react": "BROWSER=none react-scripts start",
"start-client-dev": "npm-run-all -p wipe-css build-css watch-css start-react",
"start": "BROWSER=None react-scripts start",
"build": "npm run build-css && react-scripts build",
"heroku-postbuild": "npm run build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}