-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.61 KB
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
{
"name": "luxe",
"version": "0.0.1",
"description": "Booking a service",
"author": "Thanh Nguyen <nguyentruongthanh.dn@gmail.com>",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development nodemon --exec babel-node ./bin/www",
"lint": "./node_modules/.bin/standard",
"test": "cross-env NODE_ENV=test jest",
"sq": "./node_modules/.bin/sequelize"
},
"dependencies": {
"async": "^1.4.2",
"babel-cli": "*",
"babel-core": "*",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015-node6": "*",
"babel-preset-stage-3": "*",
"babel-register": "*",
"body-parser": "^1.12.4",
"cors": "^2.7.1",
"debug": "~2.1.1",
"diacritics": "^1.3.0",
"dotenv": "^4.0.0",
"express": "^4.4.1",
"express-validation": "^1.0.2",
"joi": "^11.0.2",
"jsonwebtoken": "^8.0.1",
"knex": "^0.8.6",
"macroable": "^1.0.0",
"morgan": "~1.5.1",
"mysql2": "^1.4.2",
"node-req": "^2.0.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-facebook-token": "^3.3.0",
"passport-jwt": "^3.0.0",
"password-hash": "^1.2.2",
"sequelize": "^4.8.4",
"sequelize-cli": "^3.0.0-3",
"uuid": "^3.1.0"
},
"devDependencies": {
"cross-env": "^5.0.5",
"eslint": "^3.4.0",
"faker": "^3.1.0",
"jest": "^21.1.0",
"jest-cli": "^21.1.0",
"knex": "^0.8.6",
"nodemon": "^1.12.0",
"standard": "^10.0.3",
"supertest": "2.0.1",
"supertest-as-promised": "4.0.2"
},
"standard": {
"ignore": []
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "1500"
}
}