-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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": "multi-n-back",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w -ws _ ",
"clean": "bsb -clean-world",
"server": "moduleserve ./ --port 8000",
"clean-dist": "rimraf ./dist",
"build-dist": "yarn clean-dist && webpack --config ./webpack.config.js && cp ./indexProduction.html ./dist/index.html && cp ./favicon.ico ./dist/favicon.ico",
"serve-dist": "serve ./dist -l 3000",
"test": "jest"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react"
],
"author": "",
"license": "MIT",
"dependencies": {
"@glennsl/bs-jest": "^0.5.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-react": ">=0.7.0",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"bs-platform": "^8.2.0",
"moduleserve": "^0.9.0"
},
"jest": {
"testMatch": [
"**/*_test.bs.js"
],
"testURL": "http://localhost/"
}
}