-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "pims",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/node": "^16.18.2",
"axios": "^1.9.0",
"body-parser": "^1.20.1",
"body-parser-xml": "^2.0.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"fast-xml-parser": "^4.3.2",
"mongoose": "^8.9.5",
"var": "^0.4.0",
"web-vitals": "^2.1.4",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.188",
"@types/mocha": "^10.0.1",
"@types/mongodb-memory-server": "2.3.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/nodemon": "^1.19.2",
"@types/sinon": "10.0.13",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.45.0",
"axios-mock-adapter": "^1.21.2",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"cookies": "^0.9.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^4.2.1",
"json-diff": "^0.9.0",
"mocha": "^10.2.0",
"mongodb": "5.8.0",
"mongodb-memory-server": "^8.12.1",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"prettier": "2.8.8",
"sinon": "^15.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"start": "ts-node-dev src/server.ts",
"test": "mocha",
"build": "tsc",
"lint": "tsc && eslint \"**/*.{js,ts,jsx,tsx}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts,jsx,tsx}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts,jsx,tsx,json}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts,jsx,tsx,json}\""
}
}