-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "http-nas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./api/server.ts",
"prod": "tsc && node ./build/server.js",
"test": "jest -i --forceExit tests/*.test.js",
"eslint": "eslint api/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Redactics/http-nas.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Redactics/http-nas.git/issues"
},
"homepage": "https://github.com/Redactics/http-nas.git#readme",
"dependencies": {
"@types/express": "^4.17.6",
"argon2": "^0.26.2",
"date-fns": "^2.16.1",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.9.0",
"pm2": "^5.1.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3",
"winston": "^3.3.3",
"yaml": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-jest": "^26.1.0",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^26.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1"
}
}