-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
61
62
63
{
"name": "expressjs-mvc",
"version": "1.0.0",
"description": "MVC Boilerplate for expressjs",
"main": "./dist/server.js",
"author": "fahriansyah",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\"",
"start": "node dist/server.js",
"fortmat": "npx prettier --write .",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha"
},
"dependencies": {
"app-root-path": "^3.0.0",
"bcrypt": "^5.0.1",
"cloudinary": "^1.21.0",
"crypto": "^1.0.1",
"datauri": "^4.1.0",
"dotenv": "^8.2.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.2.0",
"module-alias": "^2.2.2",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"objection": "^3.0.1",
"randomstring": "^1.1.5",
"supertest": "^4.0.2",
"uuid": "^8.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.13",
"@types/uuid": "^8.3.4",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^7.3.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.19",
"prettier": "2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.8.2"
},
"_moduleAliases": {
"@root": ".",
"@utils": "./app/Http/Utils"
}
}