-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "2048-reasons",
"version": "0.1.0",
"description": "A functional implementation of the world famous 2048 Game in ReasonMl and ReasonReact",
"author": "Alan R. Soares <[email protected]> github.com/alanrsoares",
"homepage": "http://alanrsoares.github.io/2048-reasons",
"private": true,
"dependencies": {
"rationale": "^0.1.10",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"reason-scripts": "1.0.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prepare": "npm link bs-platform",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.9",
"bs-platform": "^7.0.1",
"bs-webapi": "^0.15.6",
"gh-pages": "^2.2.0",
"jest-cli": "^24.9.0",
"node-sass-chokidar": "^1.4.0",
"npm-run-all": "^4.1.5",
"reason-react": "^0.7.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}