-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.17 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
{
"name": "pod",
"version": "1.0.0",
"description": "Payment Simplified",
"main": "src/start.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node src/start.js",
"test": "node tests/server/tests.js | tap-spec",
"test-client": "browserify tests/client/tests.js > tests/client/tests-bundle.js && cat tests/client/test.html | browser-run --input html --static ./tests/client/ --browser electron | tap-spec",
"coverage": "./node_modules/.bin/istanbul cover tests/server/tests.js",
"sass": "./node_modules/.bin/node-sass --source-map true client-build/sass/main.scss public/assets/css/main.css",
"build": "node gulpfile.js",
"postinstall": "node gulpfile.js",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"init": "bash scripts/init.sh",
"dev": "./node_modules/.bin/nodemon --ext js,scss,hbs --ignore public/ src/start.js"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/pod.git"
},
"author": "macintoshhelper, philawsophizing",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/pod/issues"
},
"homepage": "https://github.com/FACN1/pod#readme",
"dependencies": {
"@google-cloud/vision": "^0.11.2",
"babel-preset-env": "^1.4.0",
"env2": "^2.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-nodemon": "^2.2.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"handlebars": "^4.0.7",
"hapi": "^16.1.1",
"hapi-auth-jwt2": "^7.2.4",
"inert": "^4.2.0",
"jsonwebtoken": "^7.4.0",
"node-sass": "^4.5.2",
"pg": "^6.1.5",
"uuid": "^3.0.1",
"vision": "^4.1.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"testling": "^1.7.1"
},
"engines": {
"node": "7.9.0"
}
}