-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.2 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
{
"name": "holo_st_web",
"version": "1.0.0",
"description": "",
"main": "./out/server.js",
"scripts": {
"prettier": "prettier --write .",
"serve:worker": "webpack --mode=development --env.TARGET=WORKER --watch",
"serve:browser": "webpack --mode=development --env.TARGET=BROWSER --watch",
"serve": "webpack --mode=development --watch",
"build:worker": "webpack --mode=production --env.TARGET=WORKER",
"build:browser": "webpack --mode=production --env.TARGET=BROWSER",
"build:dev": "webpack --mode=development",
"build": "webpack --mode=production",
"start": "node .",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"animejs": "^3.2.1",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"compression": "^1.7.4",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"log-update": "^4.0.0",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"puppeteer": "^6.0.0",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2"
},
"devDependencies": {
"@prettier/plugin-xml": "^0.13.1",
"@types/animejs": "^3.1.3",
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.23",
"@types/compression": "^1.7.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jquery": "^3.5.5",
"@types/lodash": "^4.14.168",
"@types/mini-css-extract-plugin": "^1.4.1",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.22",
"@types/puppeteer": "^5.4.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"css-loader": "^5.0.1",
"eslint": "^7.22.0",
"mini-css-extract-plugin": "^1.4.1",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^2.5.2"
}
}