-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "quotes-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --files --transpile-only --respawn --inspect=4321 --project tsconfig.json src/server.ts",
"test": "cross-env NODE_ENV=test jest --verbose --silent --noStackTrace",
"test:log": "cross-env NODE_ENV=test jest --verbose",
"build": "cross-env NODE_ENV=development babel src --extensions \".js,.ts\" --out-dir dist --copy-files",
"clean": "tsc --build --clean",
"prod": "cross-env NODE_ENV=development pm2 start ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunofelixf/quotes-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/brunofelixf/quotes-api/issues"
},
"homepage": "https://github.com/brunofelixf/quotes-api#readme",
"dependencies": {
"@prisma/client": "^4.10.1",
"bcryptjs": "^2.4.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.13.0",
"@types/supertest": "^2.0.12",
"babel-loader": "^9.1.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"cross-env": "^7.0.3",
"jest": "^29.4.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}