-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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": "express-typescript-ejs-starter",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "gulp build",
"serve": "gulp build && gulp",
"prestart": "npm run build",
"start": "node -r dotenv/config .",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpr-nh/express-typescript-ejs-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dpr-nh/express-typescript-ejs-starter/issues"
},
"homepage": "https://github.com/dpr-nh/express-typescript-ejs-starter#readme",
"dependencies": {
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"glob": "^8.0.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"browser-sync": "^2.27.10",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-environments": "^1.0.1",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"sass": "^1.53.0",
"typescript": "^4.7.4"
}
}