forked from Astro-Verse-m3/astroverso-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "astroverso-api",
"version": "1.0.0",
"main": "index.ts",
"author": "Winnie <winnie_brandao@yahoo.com.br>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules src/server",
"typeorm": "typeorm-ts-node-commonjs",
"test": "cross-env NODE_ENV=test SECRET_KEY=secret_key jest --verbose --runInBand",
"build": "tsc",
"start": "node dist/src/server.js"
},
"devDependencies": {
"@types/node": "^18.11.18",
"sqlite3": "^5.1.4",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/jsonwebtoken": "^8.5.9",
"@types/supertest": "^2.0.12",
"bcryptjs": "2.4.3",
"cross-env": "^7.0.3",
"dotenv": "16.0.2",
"express": "4.18.2",
"express-async-errors": "3.1.1",
"jest": "^29.3.1",
"jsonwebtoken": "8.5.1",
"pg": "8.8.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typeorm": "^0.3.6",
"uuid": "9.0.0",
"yup": "0.32.11"
}
}