-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "project1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/routes/index.ts",
"prettier": "prettier --config .prettierrc src/**/*.ts --write",
"start": "nodemon ./src/routes/index.ts",
"build": "npx tsc",
"test": "npm run build && npm run jasmine",
"jasmine": "jasmine"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^4.0.3",
"@types/node": "^18.0.3",
"@types/sharp": "^0.30.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"express": "^4.18.1",
"jasmine": "^4.2.1",
"jasmine-spec-reporter": "^7.0.0",
"sharp": "^0.30.7",
"supertest": "^6.2.4"
}
}