-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
58
59
60
{
"name": "json-hub",
"version": "1.0.0",
"description": "A NodeJS based REST API service for development and testing",
"main": "server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"lint": "eslint .",
"build": "tsc && cp ./src/views/index.ejs ./dist/views && cp -r ./src/public ./dist",
"postinstall": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adityabisoi/json-hub.git"
},
"author": "Aditya Bisoi",
"license": "ISC",
"bugs": {
"url": "https://github.com/adityabisoi/json-hub/issues"
},
"homepage": "https://github.com/adityabisoi/json-hub#readme",
"dependencies": {
"dateformat": "^5.0.3",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-imagemin": "^8.0.0",
"gulp-terser": "^2.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.2.5",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}