-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 KB
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
{
"name": "mvc-template",
"version": "0.1.0",
"description": "* Node framework: Express;\r * ORM: Sequelize;\r * BD: MySql;\r * Template engine: EJS.",
"main": "./bin/www",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon --exec sucrase-node ./bin/www",
"test": "jest --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"clean": "rm -fr dist",
"build": "sucrase ./src -d ./dist --transforms imports"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CofferHub/nodejs-mvc-boilerplate.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CofferHub/nodejs-mvc-boilerplate/issues"
},
"homepage": "https://github.com/CofferHub/nodejs-mvc-boilerplate#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.2",
"materialize-css": "^1.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^5.0.0",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"dotenv": "^10.0.0"
"sequelize": "^6.6.5",
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"sequelize-cli": "^6.2.0",
"sucrase": "^3.20.0"
}
}