generated from mearns/node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.27 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "PROJECT-NAME",
"version": "0.1.0",
"description": "$PROJECT_DESCRIPTION$",
"keywords": [],
"author": "Brian Mearns <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mearns/PROJECT-NAME.git"
},
"bugs": {
"url": "https://github.com/mearns/PROJECT-NAME/issues"
},
"homepage": "https://github.com/mearns/PROJECT-NAME#readme",
"engines": {
"node": "^10.9.0"
},
"main": "src/index.js",
"files": [
"src/**/*"
],
"scripts": {
"clean": "rimraf dist/ build/ coverage/ .nyc_output/",
"pretty": "pretty-quick --staged",
"pretty-all": "prettier --write src/**/*.js ./*.js ./*.json ./*.yaml ./*.yml",
"check": "eslint src/ test/ --ext .js --format codeframe",
"test": "nyc npm run test-only",
"test-only": "mocha test/src/",
"verify": "npm run check && npm run test",
"build": "per-env",
"build:production": "webpack --mode production",
"build:development": "webpack --mode development",
"build:local": "webpack --mode development",
"start": "node ."
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty -s"
}
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"extract-loader": "^3.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"node": "^10.9.0",
"nyc": "^14.1.1",
"per-env": "^1.0.2",
"prettier": "^1.17.1",
"pretty-quick": "^1.10.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@babel/runtime": "^7.5.4",
"axios": "^0.19.0",
"eslint-plugin-react": "^7.14.2",
"express": "^4.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"source-map-support": "^0.5.12"
}
}