-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.05 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
{
"name": "mera-starter",
"version": "0.1.0",
"description": "Boilerplate project for building restful APIs APIs",
"scripts": {
"test": "cross-env NODE_ENV=test PORT=8080 MONGO_URL=mongodb://localhost:27017/mera-test node_modules/.bin/nyc node --harmony-proxies node_modules/.bin/ava",
"watch:test": "npm run test -- --watch",
"cover": "nyc npm run test",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"start": "cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=development nodemon index.js",
"start:prod": "cross-env NODE_ENV=production node index.js",
"bs": "npm run clean && npm run build && npm run build && npm run start:prod",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"clean": "rimraf dist",
"slate": "rimraf node_modules && npm install",
"lint": "eslint server"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/phumberdroz/mera-starter.git"
},
"bugs": {
"url": "https://github.com/phumberdroz/mera-starter/issues"
},
"homepage": "https://github.com/Hashnode/mern-starter#readme",
"author": "Pierre Humberdroz < [email protected] >, all MERN-Authors",
"license": "MIT",
"dependencies": {
"babel-core": "^6.9.1",
"body-parser": "^1.15.1",
"compression": "^1.6.2",
"cross-env": "^3.1.3",
"cuid": "^1.3.8",
"eslint-plugin-react": "^6.6.0",
"express": "^4.13.4",
"limax": "^1.3.0",
"mongoose": "^4.4.20",
"sanitize-html": "^1.11.4"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-native-modules": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"json-loader": "^0.5.4",
"mockgoose": "^6.0.3",
"nodemon": "^1.9.2",
"nyc": "^8.4.0",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"supertest": "^2.0.1",
"webpack": "2.1.0-beta.8",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-externals-plugin": "^1.0.0",
"webpack-hot-middleware": "^2.10.0"
},
"engines": {
"node": ">=4"
},
"ava": {
"files": [
"**/*.spec.js"
],
"source": [
"**/*.js"
],
"failFast": true,
"babel": "inherit",
"require": [
"./util/setup-test-env.js"
]
},
"nyc": {
"include": [
"V*/**/*.js"
],
"exclude": [
"**/*.spec.js",
"util/setup-test-env.js",
"util/test-helpers.js",
"config.js",
"**/*.dummyData.js"
],
"reporter": [
"lcov",
"text",
"html"
]
}
}