-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "ddntj",
"version": "1.2.2",
"description": "Playing online TRPG with HTML5",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"watch": "NODE_ENV=dev webpack --watch --config webpack/webpack.base.conf.js",
"build": "NODE_ENV=production webpack --config webpack/webpack.base.conf.js",
"build:dev": "NODE_ENV=dev webpack --config webpack/webpack.base.conf.js",
"heroku-postbuild": "npm run build",
"heroku-prebuild": "npm install --only=dev",
"prestart": "webpack --config webpack/webpack.base.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Minori-Akizuki/ddntj.git"
},
"author": "Minori Akizuki",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Minori-Akizuki/ddntj/issues"
},
"homepage": "https://github.com/Minori-Akizuki/ddntj#readme",
"dependencies": {
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.4",
"cradle": "^0.7.1",
"forever": "^0.15.3",
"jquery": "^3.2.1",
"log4js": "^2.3.3",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"style-loader": "^1.0.0",
"vue": "^2.6.10"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"html-webpack-plugin": "^2.30.1",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.0.4",
"vue-router": "^2.7.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^3.5.5"
}
}