This repository was archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.04 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.04 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ghibli-reasonreact",
"private": false,
"version": "0.0.1",
"description": "Ghibli studio's film explorer built with ReasonReact",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=production npm run build",
"start": "npm run dev | npm run watch:re",
"dev": "NODE_ENV=development webpack-dev-server",
"watch:re": "bsb -make-world -w",
"build": "npm run clean:dist && npm run build:re && npm run build:webpack",
"build:re": "bsb -make-world",
"build:webpack": "NODE_ENV=production webpack",
"publish:demo": "node ./publish-demo.js",
"analyze": "NODE_ENV=analyze yarn build; analyze-bundle -b dist/build/main.js -s dist/build/stats.json",
"clean": "bsb -clean-world",
"clean:dist": "rm -rf dist"
},
"keywords": [],
"author": "Irfan Maulana <github.com/mazipan>",
"license": "MIT",
"dependencies": {
"@glennsl/bs-json": "^4.0.0",
"bs-fetch": "^0.5.0",
"bs-platform": "6.2.1",
"bs-webapi": "^0.15.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"reason-react": "0.7.0"
},
"devDependencies": {
"compression-webpack-plugin": "3.0.1",
"concurrently": "5.0.2",
"copy-webpack-plugin": "5.1.1",
"cross-env": "5.2.1",
"css-loader": "3.4.1",
"electrode-bundle-analyzer": "1.0.1",
"express": "4.17.1",
"express-static-gzip": "1.1.3",
"extract-text-webpack-plugin": "3.0.2",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "5.0.2",
"gh-pages": "2.2.0",
"html-webpack-plugin": "3.2.0",
"rimraf": "2.6.3",
"rollup-loader": "0.3.0",
"rollup-plugin-node-resolve": "5.2.0",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "2.2.0",
"upath": "1.2.0",
"webpack": "4.41.5",
"webpack-bundle-size-analyzer": "3.1.0",
"webpack-cli": "3.3.10",
"webpack-closure-compiler": "2.1.6",
"webpack-common-shake": "2.1.0",
"webpack-dev-server": "3.10.1",
"webpack-manifest-plugin": "2.2.0",
"webpack-shell-plugin": "0.5.0",
"webpack-stats-plugin": "0.3.1",
"workbox-webpack-plugin": "4.3.1"
}
}