-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx tsc && jasmine",
"build": "yarn clean && npx tsc",
"clean": "rimraf build/",
"start": "npm run build && nodemon build/index.js",
"format": "prettier --write src/**/*.ts",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"sharp": "^0.30.7"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.2",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.12",
"@types/sharp": "^0.30.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"morgan": "^1.10.0",
"nodemon": "^1.4.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}