-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "hapi-react-kit",
"version": "0.0.1",
"description": "A simple starter kit for a hapijs and react app.",
"main": "server.js",
"scripts": {
"compile": "webpack",
"compile:json": "webpack --profile --json",
"start": "node --max_old_space_size=8192 ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "./node_modules/mocha/bin/mocha $(find . -name '*.test.js' ! -ipath '*node_modules*')"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gjunkie/hapi-react-kit.git"
},
"keywords": [
"hapijs",
"react"
],
"author": "Freddie Carthy",
"license": "MIT",
"bugs": {
"url": "https://github.com/gjunkie/hapi-react-kit/issues"
},
"homepage": "https://github.com/gjunkie/hapi-react-kit#readme",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"es6-promise": "^4.2.4",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"mocha": "^4.1.0",
"nock": "^9.2.1"
}
}