-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "fwd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx tsc && jasmine",
"start:dev": "nodemon --watch './**/*.ts' --exec 'ts-node' ./src/index.ts",
"clean": "rimraf build/",
"build": "yarn clean && npx tsc",
"start:prod": "npm run build && nodemon build/index.js",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EGYWEB-Mohamed/FWD-Advanced-Full-Stack-Web-Development.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EGYWEB-Mohamed/FWD-Advanced-Full-Stack-Web-Development/issues"
},
"homepage": "https://github.com/EGYWEB-Mohamed/FWD-Advanced-Full-Stack-Web-Development#readme",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"morgan": "^1.10.0",
"supertest": "^6.1.6"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.2",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.12",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}