-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "10.x"
},
"main": "index.js",
"scripts": {
"start": "nodemon -e js,ejs,json,scss,css,md index.js",
"test": "node test.js",
"dev": "webpack --config webpack.config.js --mode development",
"watch": "webpack --config webpack.config.js --mode development --watch",
"analyze": "webpack --config webpack.config.js --mode production --profile --json > stats.json",
"build": "webpack --config webpack.config.js --mode production"
},
"dependencies": {
"ansi_up": "^4.0.3",
"autolinker": "^3.0.5",
"bootstrap": "^4.3.1",
"dotenv": "^7.0.0",
"ejs": "^2.6.1",
"express": "^4.15.2",
"express-ejs-layouts": "^2.5.0",
"https": "^1.0.0",
"jquery": "^3.4.1",
"markdown-toc": "^1.2.0",
"node-fetch": "^2.3.0",
"node-pandoc": "^0.3.0",
"nodemon": "^1.18.11",
"ol": "^5.3.2",
"pg": "^7.9.0",
"proj4": "^2.5.0",
"request": "^2.88.0",
"sass": "^1.20.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "1.17.0",
"tape": "^4.7.0",
"webpack-bundle-analyzer": "^3.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier --config .prettierrc --write",
"git add"
]
}
}