-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "front",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"author": "",
"scripts": {
"serve": "cross-env NODE_ENV=development nodemon --config nodemon.json dist/bundle.js",
"build": "cross-env NODE_ENV=production node esbuild.config.js"
},
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/is-number": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"compressing": "^1.6.2",
"cross-env": "^7.0.3",
"esbuild": "^0.14.51",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.19",
"typescript": "^4.7.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"ejs": "^3.1.8",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"is-number": "^7.0.0",
"mysql2": "^2.3.3",
"node-fetch": "^3.2.9",
"random-int": "^3.0.0"
}
}