-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.77 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
{
"name": "node-project-template",
"version": "0.0.1",
"description": "A simple repo template to quickly bootstrap a new node project",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"test-watch": "jest --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"lint-staged": "lint-staged",
"coverage": "NODE_ENV=test jest --coverage",
"coverage-ci": "npm run coverage && cat ./coverage/lcov.info | codecov",
"build": "mkdir -p lib; npm run test && NODE_ENV=build babel src -d lib --verbose",
"build-watch": "mkdir -p lib; NODE_ENV=build babel src -w -d lib --verbose",
"dev": "nodemon --exec babel-node -r loadEnv.js src/",
"start": "NODE_ENV=production node -r ./loadEnv.js lib/index.js",
"release": "np --no-publish"
},
"files": [
"lib"
],
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": "./node_modules/eslint/bin/eslint.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"pre-commit": "lint-staged",
"keywords": [
"template",
"node",
"nodejs",
"starter",
"starter-kit"
],
"author": "Chris Kalmar <christian.kalmar@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/node": "7.7.4",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/preset-env": "7.7.6",
"@babel/runtime": "7.7.6",
"babel-eslint": "10.0.3",
"codecov": "3.6.1",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"nodemon": "1.19.4",
"prettier": "1.19.1",
"prettier-eslint": "9.0.0",
"rimraf": "3.0.0"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}