-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1008 Bytes
/
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
{
"name": "boilerplate",
"version": "1.0.47",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -L --watch ./src --nolazy ./src/index.ts",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"start": "node dist/index.js",
"fetch:sdk": "ncu -u && npm i",
"deploy:git": "grunt && git add . && git commit -m 'clean' && git push"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"module-alias": "^2.2.2",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.3.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-mongodb-session": "^3.2.1",
"grunt": "^1.6.1",
"gunbound-typescript-sdk": "^1.2.291",
"http-status-codes": "^2.2.0",
"joi": "^17.9.1",
"mongoose": "^7.0.3",
"nodemon": "^2.0.22",
"toml": "^3.0.0",
"uuid": "^9.0.0",
"ws": "^8.13.0",
"yup": "^1.1.1"
},
"_moduleAliases": {
"@": "src"
}
}