-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "udacity-project-1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"build": "npx tsc",
"jasmine": "jasmine",
"lint": "eslint 'src/*.ts'",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "npm run build && npm run jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IvoBiaus/udacity-project-1.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IvoBiaus/udacity-project-1/issues"
},
"homepage": "https://github.com/IvoBiaus/udacity-project-1#readme",
"dependencies": {
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"file-type": "^16.5.3",
"jasmine": "^3.8.0",
"jasmine-spec-reporter": "^7.0.0",
"sharp": "^0.28.3",
"supertest": "^6.1.5"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.7",
"@types/file-type": "^10.9.1",
"@types/jasmine": "^3.8.2",
"@types/node": "^16.6.1",
"@types/sharp": "^0.28.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}