-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.8 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.8 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
{
"name": "hackmt-2020",
"version": "1.0.0",
"description": "hackmt-2020 project",
"main": "index.js",
"scripts": {
"start": "node ./server/index.js",
"compile": "babel server --out-dir dist --delete-dir-on-start --source-maps inline --copy-files",
"dev": "nodemon server --exec node ./server/index.js | pino-pretty",
"dev:debug": "nodemon server --exec babel-node --config .nodemonrc.json --inspect | pino-pretty",
"test": "mocha --require @babel/register --exit",
"test:debug": "mocha --require @babel/register --inspect-brk --exit",
"lint": "eslint -c .eslintrc.json {server,test}/**",
"lint:fix": "eslint --fix -c .eslintrc.json {server,test}/**"
},
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-openapi-validator": "^5.0.2",
"http": "0.0.0",
"moment": "^2.29.4",
"mongoose": "^6.10.0",
"pino": "^8.11.0",
"socket.io": "^4.6.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"babel-eslint": "^10.0.3",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"pino-pretty": "^9.3.0",
"prettier": "^2.8.4",
"supertest": "^6.3.3"
},
"author": "Tim Gass <[email protected]> (https://github.com/timgass)",
"type": "module"
}