-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·41 lines (41 loc) · 1.22 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
{
"name": "reason-neon-clock",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel watch:bs serve",
"start": "parcel src/index.html",
"serve": "parcel src/index.html",
"prestart": "npm run clean:bs && npm run build:bs",
"watch:bs": "bsb -make-world -w",
"build": "parcel build src/index.html",
"prebuild": "npm run clean && npm run build:bs",
"build:bs": "bsb -make-world",
"clean": "npm run clean:bs && npm run clean:dist",
"clean:bs": "bsb -clean-world",
"clean:dist": "rm -rf dist",
"predeploy": "rm -rf dist && parcel build src/index.html --public-url /reason-neon-clock",
"deploy": "gh-pages -d dist",
"test": "npm run build && jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"bs-platform": "5.0.6",
"bsb-js": "^1.1.7",
"less": "3.10.3",
"npm-run-all": "4.1.5",
"parcel-bundler": "^1.12.3"
},
"dependencies": {
"@denommus/react-react": "1.0.2",
"@glennsl/bs-json": "5.0.1",
"gh-pages": "2.1.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-frp": "git://github.com/Denommus/react.git#bucklescript-files",
"reason-react": "0.7.0"
}
}