-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "nodejs-learn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"jasmine": "jasmine",
"build": "npx tsc && node build/index.js",
"dev": "nodemon src/index.ts",
"test": "npx tsc && npm run jasmine",
"lint": "eslint src/**/*.ts --fix",
"prettier": "npx prettier src/**/*.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Youssef-Mhmoud/nodejs-learn.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Youssef-Mhmoud/nodejs-learn/issues"
},
"homepage": "https://github.com/Youssef-Mhmoud/nodejs-learn#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.0",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"supertest": "^6.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"express": "^4.18.2",
"fs": "^0.0.1-security",
"fs-extra": "^10.1.0",
"sharp": "^0.31.1"
}
}