-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 884 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 884 Bytes
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
{
"name": "udacity-image-processing-api",
"version": "1.0.0",
"description": "Udacity Advanced Full Stack Track Project One.",
"main": "index.ts",
"scripts": {
"start": "nodemon src/server.ts",
"build": "npx tsc",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine",
"lint": "eslint \"index.js\"",
"prettier": "prettier --config .prettierrc \"*.js\" --write"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^4.0.3",
"@types/node": "^17.0.31",
"@types/sharp": "^0.30.2",
"@types/supertest": "^2.0.12",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"supertest": "^6.2.3",
"jasmine": "^4.1.0",
"jasmine-spec-reporter": "^7.0.0"
},
"dependencies": {
"express": "^4.18.1",
"sharp": "^0.30.4"
}
}