-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
56
57
{
"name": "ass-1",
"version": "1.0.0",
"description": "Assignment 1 for Udacity Fullstack",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "nodemon src/index.ts",
"lint": "eslint \"src/**/*.ts\"",
"prettier": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NgoDuyVu1993/Assignment-1.git"
},
"keywords": [
"ass1"
],
"author": "Ngo Duy Vu",
"license": "ISC",
"bugs": {
"url": "https://github.com/NgoDuyVu1993/Assignment-1/issues"
},
"homepage": "https://github.com/NgoDuyVu1993/Assignment-1#readme",
"dependencies": {
"express": "^4.18.2",
"fs": "^0.0.1-security",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"path": "^0.12.7",
"pg": "^8.8.0",
"sharp": "^0.31.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.7",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"supertest": "^6.3.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
}
}