-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "starterkit",
"version": "0.1.0",
"description": "A startkit webapp using node, babel and webpack",
"scripts": {
"prebuild": "npm install",
"build": "webpack",
"pretest": "npm run build",
"test": "mocha --recursive src/**/__tests__/*.js",
"test:watch": "npm test -- --watch",
"test:notify": "npm run test:watch -- --notify",
"coverage": "npm test -- --coverage",
"coverage:notify": "npm run coverage -- --watch --notify",
"prestart": "npm run build",
"start": "node dist/index.js"
},
"author": {
"name": "Naveen Kumar",
"email": "mister.naveenkumar@gmail.com"
},
"private": true,
"dependencies": {
"nconf": "^0.10.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.4",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"mocha": "^5.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-node-externals": "^1.5.4"
}
}