-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 908 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
35
36
{
"name": "algo-vis",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently yarn:dev:*",
"test": "jest",
"build": "yarn build:re && yarn build:js",
"clean": "yarn clean:js && yarn clean:re",
"dev:js": "parcel index.html",
"build:js": "yarn clean:js && parcel build index.html && cp public/* dist/",
"clean:js": "rimraf .cache dist",
"dev:re": "bsb -make-world -w",
"build:re": "bsb -make-world",
"clean:re": "bsb -clean-world"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react"
],
"author": "Nimo Beeren",
"license": "MIT",
"dependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-react": ">=0.7.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.5.1",
"bs-platform": "^8.2.0",
"concurrently": "^5.3.0",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2"
}
}