forked from manatee-matinee/piddle
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "piddle",
"version": "0.0.0",
"description": "Bill splitting through OCR and Venmo.",
"main": "server.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha server/spec",
"start": "NODE_ENV=dev ./node_modules/.bin/nodemon server/server.js",
"build:client": "(cd ./client && exec npm run build)",
"doc": "./node_modules/.bin/apidoc -i server/routes -o docs/api & ./node_modules/.bin/jsdoc -c ./jsdocsConfig.json",
"docker": "npm run install:all && npm run build:client && npm run start",
"install:all": "npm install && (cd ./client && exec npm install)"
},
"apidoc": {
"title": "The API for the Piddle bill splitting application",
"url": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/newtonian-platypus/piddle.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/newtonian-platypus/piddle/issues"
},
"homepage": "https://github.com/newtonian-platypus/piddle#readme",
"devDependencies": {
"apidoc": "^0.16.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"jsdoc": "^3.4.2"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"mocha": true
},
"plugins": [
"react",
"jsx-a11y",
"import"
]
},
"dependencies": {
"@google-cloud/vision": "^0.5.0",
"bcrypt-as-promised": "^1.1.0",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"cors": "^2.8.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-session": "^1.14.1",
"fs": "0.0.1-security",
"hashids": "^1.1.1",
"https": "^1.0.0",
"jwt-simple": "^0.5.0",
"mathjs": "^3.6.0",
"mocha": "^3.1.2",
"morgan": "^1.7.0",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"passport-local": "^1.0.0",
"sequelize": "^3.24.4",
"sqlite3": "^3.1.6",
"supertest": "^2.0.1"
}
}