-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.53 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.53 KB
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
{
"name": "pixelstore",
"version": "1.0.0",
"description": "trabalho api",
"license": "MIT",
"author": "Laura",
"type": "commonjs",
"main": "server.ts",
"scripts": {
"test": "jest --runInBand",
"test:integration": "jest --runInBand tests/integration.test.ts",
"test:auth": "jest --runInBand tests/auth.test.ts",
"test:user": "jest --runInBand tests/user.test.ts",
"test:product": "jest --runInBand tests/product.test.ts",
"test:store": "jest --runInBand tests/store.test.ts",
"test:category": "jest --runInBand tests/category.test.ts",
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --watch src --ext ts,js --exec \"ts-node -r tsconfig-paths/register src/server.ts\"",
"typeorm": "node --require ts-node/register node_modules/typeorm/cli.js -d src/config/data-source.ts"
},
"dependencies": {
"@types/node": "^24.3.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.15.1",
"node": "^24.6.0",
"nodemon": "^3.1.10",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.26"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2"
}
}