-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 864 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
{
"name": "buckleruby",
"version": "0.1.0",
"scripts": {
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"watch": "bsb -make-world -w",
"start": "yarn bundle && webpack-dev-server",
"test": "yarn build && jest",
"bundle": "yarn build && webpack",
"bundle:watch": "yarn build && webpack -w",
"bundle:production": "NODE_ENV=production yarn bundle"
},
"keywords": [
"BuckleScript"
],
"author": "cedretaber <[email protected]>",
"license": "MIT",
"description": "A MinRuby interpreter written by BuckleScript.",
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reason-react": "^0.5.3"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.7",
"bs-platform": "^4.0.18",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}