This repository has been archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
72 lines (72 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
72
{
"name": "fake-artist-online",
"version": "1.0.0",
"engines": {
"node": "^13.0.0"
},
"description": "",
"main": "src/server/server.js",
"scripts": {
"clean": "rm -rf dist/ src/public/js/*.min.* src/public/style/*.bundle.*",
"test": "mocha --exit --require @babel/register",
"build": "npm run build-p && npm run build-s",
"start": "node ./dist/server/server.js",
"build-p": "webpack --env.production --output-path-info --display-modules",
"watch-p": "webpack --env.development -w --debug --output-path-info --display-modules",
"build-s": "babel -D src/server -d dist/server && babel -D src/common -d dist/common"
},
"author": "Gideon W",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"ajv": "^6.10.0",
"babel-loader": "^8.0.5",
"compression": "^1.7.4",
"compression-webpack-plugin": "^3.0.1",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.0.1",
"css-loader": "^3.4.1",
"csv": "^5.3.0",
"dotenv": "^6.2.0",
"express": "^4.16.3",
"extract-loader": "^4.0.3",
"file-loader": "^5.1.0",
"html-loader": "^0.5.5",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.0",
"normalize.css": "^8.0.1",
"sass-loader": "^8.0.0",
"socket.io": "^2.2.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^2.3.1",
"vue-feather-icons": "^5.0.0",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/register": "^7.7.7",
"@types/async": "^2.4.1",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.123",
"@types/node": "^10.14.5",
"@types/socket.io": "^1.4.40",
"@types/socket.io-client": "^1.4.32",
"async": "^2.6.2",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.2",
"mocha": "^5.2.0",
"vue": "^2.6.10"
}
}