-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "node-boilerplate",
"version": "0.0.0",
"description": "A boilerplate for simple Node projects",
"main": "./src/index.js",
"scripts": {
"clean": "rm -rf dist || 0",
"build": "npm run clean && npx babel -d ./dist ./src -s --ignore 'src/**/*.spec.js','src/**/*.test.js'",
"start": "DEBUG=app* nodemon --exec npx babel-node ./src/index.js",
"test": "NODE_ENV=test npx jest",
"test:cover": "npm run test -- --coverage"
},
"author": "Brodey Newman",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"lodash": "^4.17.11",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.1.1",
"nodemon": "^1.18.10"
}
}