-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "little-search",
"version": "0.1.0",
"scripts": {
"clean": "bsb -clean",
"clean:all": "bsb -clean-world",
"build:bsb": "bsb -make-world",
"build:js": "rollup -c",
"serve": "serve release",
"build": "run-s build:bsb build:js",
"watch:bsb": "bsb -make-world -w",
"watch:js": "rollup -c -w",
"watch": "run-p watch:bsb watch:js serve",
"start": "run-s watch",
"minify": "npx google-closure-compiler --js release/main.js --js_output_file=release/main.min.js"
},
"keywords": [
"Bucklescript"
],
"license": "MIT",
"devDependencies": {
"bs-platform": "4.0.4",
"bucklescript-tea": "^0.7.0",
"npm-run-all": "^4.1.2",
"rollup": "0.57.1",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "3.3.0",
"serve": "10.0.2"
},
"dependencies": {
"@glennsl/bs-json": "^3.0.0",
"bs-css": "^7.2.0",
"bs-webapi": "^0.13.0",
"google-closure-compiler": "^20181028.0.1",
"in-view": "^0.6.1",
"rollup-plugin-commonjs": "8.4",
"rollup-plugin-replace": "^2.0.0"
}
}