-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.91 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@tsaodown/base-node-frontend",
"version": "0.1.0",
"description": "Base Node - Frontend",
"author": "Edd Tsao",
"license": "Apache-2.0",
"main": "server.js",
"engines": {
"node": "7.2.*",
"npm": "3.10.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsaodown/base-node-frontend.git"
},
"bugs": {
"url": "https://github.com/tsaodown/base-node-frontend/issues"
},
"homepage": "https://github.com/tsaodown/base-node-frontend#readme",
"keywords": [
"node",
"express"
],
"scripts": {
"start": "babel server.js | node",
"build": "webpack",
"debug": "node debug index.js",
"test": "ava \"app/**/*.test.js\"",
"watch:test": "npm run test -- --watch",
"cover": "nyc npm run test",
"watch:cover": "nodemon --quiet --watch app --exec npm run cover -s",
"lint": "eslint .",
"validate": "npm ls"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill",
"ignore-styles"
],
"babel": "inherit"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"bootstrap": "^4.0.0-alpha.5",
"bootstrap-loader": "^1.3.3",
"classnames": "^2.2.5",
"convict": "^1.5.0",
"css-loader": "^0.26.1",
"empty": "^0.10.1",
"es6-promisify": "^5.0.0",
"exports-loader": "^0.6.3",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"image-webpack-loader": "^3.1.0",
"imports-loader": "^0.7.0",
"morgan": "^1.7.0",
"node-sass": "^4.0.0",
"postcss": "^5.2.6",
"postcss-loader": "^1.2.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0"
},
"devDependencies": {
"ava": "^0.17.0",
"ava-spec": "^1.0.1",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-register": "^6.18.0",
"enzyme": "^2.6.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-flow": "^1.0.1",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"flow-bin": "^0.37.0",
"ignore-styles": "^5.0.1",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"precommit-hook-eslint": "^3.0.0",
"react-addons-test-utils": "^15.4.1",
"react-hot-loader": "^1.3.1",
"sinon": "^1.17.6",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"pre-commit": [
"lint"
]
}