-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.59 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
{
"name": "hapi-create-react-app",
"description": "Hapi.js serving SPA created from create-react-app.",
"license": "MIT",
"private": true,
"repository": "trevtrich/hapi-create-react-app",
"bugs": "https://github.com/trevtrich/hapi-create-react-app/issues",
"homepage": "https://github.com/trevtrich/hapi-create-react-app#readme",
"author": "Trevor Richardson <[email protected]> (trevorrichardson.me)",
"scripts": {
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:js": "eslint . --cache",
"lint:md": "remark . --frail",
"generate:md": "remark . --output",
"lint:sensitive": "ban",
"lint:travis": "travis-lint .travis.yml",
"postinstall": "cd client && npm install",
"build:server": "babel src --out-dir lib",
"build:client": "npm run --prefix ./client build",
"build": "npm-run-all --print-label --parallel build:*",
"start": "node --trace-warnings lib/server/index.js",
"test:integration": "cucumber-js test/integration --profile=base --profile=noWip",
"pretest:integration": "run-s build",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"test:unit": "nyc run-p test:unit:*",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:unit:server": "DEBUG=any mocha 'src/**/*-test.js'",
"test:unit:client": "DEBUG=any npm run --prefix ./client test",
"lint:peer": "npm ls >/dev/null"
},
"dependencies": {
"@babel/cli": "7.10.5",
"@hapi/glue": "7.0.0",
"@hapi/good": "8.2.4",
"@hapi/inert": "6.0.1",
"bunyan": "1.8.14",
"dotenv-safe": "8.2.0",
"good-bunyan": "3.0.1",
"hapi-graceful-shutdown-plugin": "2.0.8"
},
"devDependencies": {
"@babel/node": "7.10.5",
"@babel/register": "7.10.5",
"@form8ion/babel-preset": "1.6.29",
"@form8ion/commitlint-config": "1.0.11",
"@form8ion/eslint-config": "1.6.26",
"@form8ion/eslint-config-mocha": "1.2.9",
"@form8ion/remark-lint-preset": "1.0.9",
"@travi/any": "2.0.10",
"ban-sensitive-files": "1.9.8",
"chai": "4.2.0",
"check-engine": "1.8.1",
"codecov": "3.7.2",
"cucumber": "6.0.5",
"cz-conventional-changelog": "3.2.0",
"gherkin-lint": "4.1.2",
"http-status-codes": "1.4.0",
"husky": "4.2.5",
"lockfile-lint": "4.3.7",
"mocha": "8.1.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"remark-cli": "8.0.1",
"remark-toc": "7.0.0",
"rimraf": "3.0.2",
"sinon": "9.0.2",
"travis-lint": "1.0.0"
}
}