-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "node-ts-new-project",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"watch:compile": "env-cmd nodemon index.ts",
"watch:typing": "tsc --noEmit --watch",
"watch": "run-p watch:compile watch:typing",
"lint": "eslint --ext .js,.ts .",
"dev": "nodemon"
},
"engines": {
"node": "16"
},
"main": "build/index.js",
"dependencies": {
"@fullerstack/nax-ipware": "^0.10.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-useragent": "^1.0.15",
"helmet": "^7.1.0",
"mongoose": "^8.0.1",
"openai": "^4.20.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@swc-node/register": "^1.5.1",
"@swc/core": "^1.2.186",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/express-useragent": "^1.0.5",
"@types/mongoose": "^5.11.97",
"@types/node": "^14.14.37",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}