-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "LeetQuest",
"version": "2.1.0",
"type": "module",
"dependencies": {
"basic-auth": "^2.0.1",
"bison": "^1.1.1",
"clf-date": "^0.2.0",
"es-main": "^1.0.2",
"express": "^4.17.1",
"he": "^1.2.0",
"htmlparser2": "^7.1.2",
"ignore-walk": "^4.0.1",
"jquery": "^3.6.0",
"lodash-es": "^4.17.21",
"merge": "^2.1.1",
"minimist": "^1.2.5",
"modernizr-esm": "^2.0.0",
"pino": "^6.13.3",
"pino-http": "^5.8.0",
"websocket": "^1.0.34",
"websocket-server": "ThisIsMissEm/node-websocket-server#v1.4.04"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^8.0.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"pino-pretty": "^7.0.1",
"prettier": "^2.4.1",
"webpack": "^5.58.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.0",
"webpack-dev-middleware": "^5.2.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"build-maps": "node tools/maps/export.js",
"format": "node bin/run-on-changed.js -c .formatting-driver.json -- prettier --write",
"lint": "eslint . --cache --cache-location node_modules/.cache/linted.json --ext .js",
"cleanup": "npm run format && npm run lint",
"format-full": "prettier --write .",
"lint-full": "eslint . --ext .js",
"cleanup-full": "npm run format-full && npm run lint-full",
"build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
"start": "NODE_ENV=production node ./server/src/index.js",
"start-dev": "NODE_ENV=development node ./server/src/index.dev.js | pino-pretty -Hct"
},
"engines": {
"node": ">=10"
}
}