-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "node-express-starter-2022",
"version": "0.3.3",
"description": "A node and express starter template for 2022",
"author": "Carter Adams <[email protected]>",
"license": "MIT-0",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist --copy-files",
"start": "node dist/index.js",
"dev": "babel-watch -w .env -w src src/index.js",
"test": "cross-env NODE_ENV=test jest --verbose",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"lint": "eslint src"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.2",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.5.0",
"babel-watch": "^7.7.2",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"regenerator-runtime": "^0.13.11",
"supertest": "^6.3.3"
}
}