-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
54
55
56
57
58
59
60
{
"name": "vpweb",
"version": "1.0.0",
"description": "Visual Pinball in the browser",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/freezy/vpweb"
},
"scripts": {
"start": "npm run serve",
"serve": "webpack-dev-server --config webpack/webpack.dev.js --inline --progress",
"serve:prod": "npm run build && http-server ./dist -a 127.0.0.1",
"build": "rimraf dist && webpack --config webpack/webpack.prod.js --bail",
"build:analyze": "rimraf dist && webpack --config webpack/webpack.analyze.js --bail --progress --profile --json > stats.json",
"build:dev": "rimraf dist && webpack --config webpack/webpack.dev.js --bail --progress --profile --json > stats.json"
},
"keywords": [
"vpinball",
"vpx",
"pinball"
],
"author": "[email protected]",
"license": "GPL-2.0",
"dependencies": {
"bootstrap": "4.4.1",
"three": "0.112.1",
"vpx-js": "1.3.1"
},
"devDependencies": {
"autoprefixer": "9.7.3",
"copy-webpack-plugin": "5.1.1",
"critters-webpack-plugin": "2.5.0",
"cross-env": "6.0.3",
"css-loader": "3.4.2",
"ejs-loader": "0.3.5",
"escodegen": "1.12.1",
"estraverse": "4.3.0",
"file-loader": "5.0.2",
"html-webpack-plugin": "3.2.0",
"http-server": "0.12.1",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.13.0",
"postcss-loader": "3.0.0",
"raw-loader": "4.0.0",
"rimraf": "3.0.0",
"sass-loader": "8.0.1",
"style-loader": "1.1.2",
"svg-inline-loader": "0.8.0",
"timeago.js": "4.0.2",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1",
"webpack-merge": "4.2.2",
"webpack-pwa-manifest": "4.1.1",
"workbox-webpack-plugin": "4.3.1",
"worker-loader": "2.0.0"
}
}