-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.78 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
61
62
{
"name": "@topazdb/gui",
"version": "0.0.0",
"description": "Graphical interface for TopazDB",
"main": "server.js",
"scripts": {
"clean": "rm -rf node_modules dist error.log",
"build:client": "webpack --config webpack.client.config.js",
"build:server": "webpack --config webpack.server.config.js --hide-modules --progress",
"build": "npm run build:client && npm run build:server && echo 'Build Complete'",
"watch": "npm run start -- --watch",
"start": "node server.js",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/topazdb/gui.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/topazdb/gui/issues"
},
"homepage": "https://github.com/topazdb/gui#readme",
"devDependencies": {
"@types/node": "^10.14.6",
"@types/vue": "^2.0.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"http-server": "^0.11.1",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"typescript": "^3.4.5",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"watch": "^1.0.2",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"lru-cache": "^5.1.1",
"moment": "^2.24.0",
"vue": "^2.6.10",
"vue-authenticate": "=1.3.5-beta.1",
"vue-axios": "^2.1.4",
"vue-class-component": "^6.3.2",
"vue-property-decorator": "^7.3.0",
"vue-router": "^3.0.6",
"vue-server-renderer": "^2.6.10",
"vuex": "^3.1.1",
"vuex-router-sync": "^5.0.0",
"webpack": "^4.31.0"
},
"config": {
"dateFormat": "MMMM Do, YYYY"
}
}