-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 797 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 797 Bytes
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
{
"name": "express-app-example",
"version": "1.0.0",
"description": "An example of how to structure medium-to-large sized Express apps",
"main": "index.js",
"engines": {
"node": "12.18.2"
},
"dependencies": {
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"loglevel": "^1.6.8"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"nodemon": "^2.0.4"
},
"scripts": {
"start": "node .",
"build": "babel --delete-dir-on-start --out-dir dist --copy-files --ignore \"**/__tests__/**,**/__mocks__/**\" --no-copy-ignored src"
},
"keywords": [],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
"license": "MIT"
}