-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "reason-music-ctx",
"version": "0.1.0",
"scripts": {
"start": "concurrently -k \"npm run start:bsb\" \"npm run start:webpack\"",
"start:bsb": "bsb -clean-world -make-world -w",
"start:webpack": "webpack-dev-server --port 4000",
"build": "npm run build:webpack",
"build:webpack": "NODE_ENV=production webpack",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"format": "refmt src/*.re"
},
"keywords": [
"BuckleScript"
],
"author": "Alain Armand",
"license": "MIT",
"dependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0",
"reason-react": ">=0.7.0"
},
"devDependencies": {
"bs-platform": "5.2.1",
"concurrently": "^5.0.0",
"file-loader": "4.2.0",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
}
}