-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "telephony",
"version": "1.0.0",
"description": "An order product module for a phone company",
"main": "index.js",
"scripts": {
"start": "nodemon",
"test": "jest",
"build": "tsc",
"test:getOrder": "jest __tests__/routes/order/getOrder.test.ts",
"test:createOrder": "jest __tests__/routes/order/createOrder.test.ts",
"test:createProduct": "jest __tests__/routes/product/createProduct.test.ts",
"test:getProductStock": "jest __tests__/routes/product/getProduct.test.ts",
"test:getProductById": "jest __tests__/routes/product/getProductById.test.ts",
"test:productFunc": "jest __tests__/functions/product/productFunc.test.ts",
"test:orderFunc": "jest __tests__/functions/order/orderFunc.test.ts"
},
"jest": {
"testPathIgnorePatterns": [
"dist"
]
},
"keywords": [
"phonecorp",
"order"
],
"author": "Frank JOVER",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"dotenv": "^16.3.1",
"jest": "^29.6.1",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/supertest": "^2.0.12",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongodb-memory-server": "^8.13.0",
"mongoose": "^7.4.0"
}
}