-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
{
"name": "buckless-server",
"version": "0.0.1",
"description": "buckless-server",
"author": "Buckless <[email protected]> https://buckless.com",
"contributors": [
"Gabriel Juchault <[email protected]>",
"Axel Mousset <[email protected]>",
"Lucas Soulier <[email protected]>"
],
"repository": "https://github.com/buckless/server.git",
"homepage": "https://buckless.com",
"private": true,
"license": "MIT",
"scripts": {
"start": "node src/app",
"test": "cross-env nyc --reporter=text-summary --reporter=html --reporter=lcov mocha ./test/bootstrap.js",
"watch": "nodemon src/app.js",
"dev": "cross-env NODE_ENV=development npm run watch",
"seed": "cross-env NODE_ENV=development node scripts/seed",
"lint": "eslint . --fix",
"sslConfig": "node scripts/sslConfig",
"addDevice": "node scripts/addDevice",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"axios": "^0.17.1",
"bcryptjs": "^2.3.0",
"bluebird": "^3.4.6",
"body-parser": "^1.17.2",
"bookshelf": "^0.12.1",
"bookshelf-manager": "^0.3.0",
"bookshelf-paranoia": "^0.11.0",
"bookshelf-signals": "^0.1.2",
"bookshelf-uuid": "^1.0.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.2",
"cors": "^2.7.1",
"cross-env": "^5.1.3",
"dot": "^1.1.2",
"express": "^4.15.3",
"flav-payline": "^0.1.4",
"fs-extra": "^5.0.0",
"jsonwebtoken": "^8.1.1",
"knex": "^0.14.2",
"leven": "^2.1.0",
"lodash": "^4.11.1",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"morgan": "^1.8.2",
"nconf": "^0.10.0",
"node-etupay": "ungdev/node-etupay",
"nodemailer": "^4.4.2",
"nyc": "^11.2.1",
"pg": "^7.4.1",
"qs": "^6.1.0",
"randomstring": "^1.1.5",
"rimraf": "^2.5.2",
"socket.io": "^2.0.3",
"uuid": "^3.2.1",
"uws": "^9.14.0",
"winston": "^2.1.1",
"winston-tcp-graylog": "^1.0.10"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.6.0",
"inquirer": "^5.0.1",
"mocha": "^5.0.0",
"nodemon": "^1.14.11"
},
"resolutions": {
"uws": "0.14.5"
}
}