-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.81 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
{
"name": "adagio-backend",
"version": "1.0.0",
"main": "index.js",
"author": "Dinho Stork <dinhostork@live.com>",
"license": "MIT",
"scripts": {
"start:dev": "NODE_ENV=development nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app/index.ts",
"start:sqlite": "NODE_ENV=test nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app/index.ts",
"test": "rimraf ./temp/* && NODE_ENV=test sequelize db:migrate && NODE_ENV=test sequelize db:seed:all && jest -i",
"test:silent": "rimraf ./temp/* && NODE_ENV=test sequelize db:migrate && NODE_ENV=test sequelize db:seed:all && jest -i --silent",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"build": "tsc -p .",
"start:prod": "NODE_ENV=production node dist/app/index.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.2.3",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"sequelize-cli": "^6.6.0",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.3.1",
"rimraf": "^5.0.1",
"pg": "8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.1",
"yup": "^1.1.1"
}
}