forked from adambechtold/taste-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.22 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
{
"name": "taste-explorer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:up:test": "docker-compose up -d test-db",
"docker:up:dev": "docker-compose up -d dev-db",
"test": "npm run docker:up:test && npx dotenv -e .env.test.local -- npx prisma migrate dev && npx dotenv -e .env.test.local -- jest -i --coverage",
"dev": "node setEnv.js && npx ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"dev:local": "npm run docker:up:dev && npx dotenv -e .env.development.local -- ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"dev:remote": "npx dotenv -e .env.development.remote -- ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"debug:local": "npm run docker:up:dev && npx dotenv -e .env.development.local -- ts-node-dev --inspect --transpile-only src/index.ts",
"debug:remote": "npx dotenv -e .env.development.remote -- ts-node-dev --inspect --transpile-only src/index.ts",
"build": "rimraf ./build && tsc && npm run copy-views",
"copy-views": "ncp ./src/views ./build/views && ncp ./src/public ./build/public",
"start": "npm run build && node build/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^2.0.16",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"dotenv-cli": "^7.3.0",
"jest": "^29.7.0",
"ncp": "^2.0.0",
"prisma": "^5.8.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.495.0",
"@prisma/client": "^5.8.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"node-cron": "^3.0.3",
"redoc": "^2.1.3",
"yamljs": "^0.3.0"
}
}