-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "niti-server",
"version": "0.0.1",
"repository": "https://github.com/etomarat/niti",
"author": "Marat Azizov",
"private": true,
"main": "dist/app.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon --inspect dist/src/app.js\"",
"addAdmin": "npx tsc && node dist/addAdmin.js"
},
"dependencies": {
"@adminjs/express": "^4.1.0",
"@adminjs/mongoose": "^2.0.2",
"adminjs": "^5.10.0",
"connect-mongo": "^4.6.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"mongoose": "^6.3.1"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"concurrently": "^7.1.0",
"eslint": "^8.14.0",
"nodemon": "^2.0.15",
"tslint": "^6.1.3",
"typescript": "^4.6.3"
}
}