-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "myproject",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node-dev ./src/index.ts",
"build": "npx tsc",
"lint": "eslint . --ext .ts -- fix",
"format": "npx prettier --write ./src/**/*.ts ",
"tsc": "tsc",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"author": "Sarah Hassan",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.9",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"sharp": "^0.29.3",
"ts-node-dev": "^1.1.8"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/jasmine": "^3.10.2",
"@types/node": "^16.11.21",
"@types/prettier": "^2.4.3",
"@types/sharp": "^0.29.5",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express-validator": "^6.14.0",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-node": "^9.1.1",
"typescript": "^4.5.4"
}
}