forked from reasonml-community/reason-react-hacker-news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 loc) · 1.63 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "reason-react-hacker-news",
"private": true,
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=production yarn build",
"start": "yarn run dev | yarn run bsb-watch",
"dev": "webpack-dev-server",
"static": "node scripts/serveStatic.js",
"bsb-watch": "bsb -make-world -w",
"build": "bsb -make-world && webpack && cp -av public/* dist",
"bsb-build": "bsb -make-world",
"upload": "./s3_upload.sh",
"analyze": "NODE_ENV=analyze yarn build; analyze-bundle -b dist/build/main.js -s dist/build/stats.json",
"clean": "bsb -clean-world"
},
"keywords": [],
"author": "James Friend",
"license": "MIT",
"dependencies": {
"bs-director": "^0.0.1",
"bs-fetch": "^0.2.0",
"bs-json": "^0.2.4",
"bs-webapi": "^0.7.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"reason-react": "^0.3.0"
},
"devDependencies": {
"bs-platform": "~2.0.0",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.1",
"express": "^4.15.3",
"express-static-gzip": "^0.2.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.11.1",
"rollup-loader": "^0.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"style-loader": "^0.17.0",
"sw-precache-webpack-plugin": "^0.11.4",
"uglifyjs-webpack-plugin": "^1.1.0",
"webpack": "^3.1.0",
"webpack-bundle-size-analyzer": "^2.6.0",
"webpack-closure-compiler": "^2.1.4",
"webpack-common-shake": "^1.5.3",
"webpack-dev-server": "2",
"webpack-manifest-plugin": "^1.1.0",
"webpack-shell-plugin": "^0.5.0",
"webpack-stats-plugin": "^0.1.5"
}
}