-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.15 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
67
68
{
"name": "turing-fullstack-farolan",
"version": "1.0.0",
"description": "Turing full stack challenge",
"main": "server/index.js",
"scripts": {
"start": "nodemon -w server server",
"start:prod": "NODE_ENV=production nodemon -w server server",
"lint": "eslint server/**",
"initdb": "node cmd data:populate; NODE_ENV=test node cmd data:populate; NODE_ENV=production node cmd data:populate",
"test": "NODE_ENV=test mocha --exit --file server/tests/init.js server/**/*Test.js",
"test:watch": "NODE_ENV=test mocha -w --exit --file server/tests/init.js server/**/*Test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farolanf/turing-fullstack-farolan.git"
},
"author": "Farolan Faisal <farolanfaisal@gmail.com>",
"private": true,
"bugs": {
"url": "https://github.com/farolanf/turing-fullstack-farolan/issues"
},
"homepage": "https://github.com/farolanf/turing-fullstack-farolan#readme",
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.0",
"apollo-server-express": "^2.4.8",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"change-case": "^3.1.0",
"commander": "^2.19.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"elasticsearch": "^15.4.1",
"express": "^4.16.4",
"finale-rest": "^1.0.2",
"graphql": "^14.1.1",
"graphql-compose": "^5.11.0",
"graphql-compose-mongoose": "^5.3.1",
"graphql-compose-pagination": "^4.0.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mongoose": "^5.4.17",
"mustache": "^3.0.1",
"mysql2": "^1.6.5",
"node-linux": "^0.1.12",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"pluralize": "^7.0.0",
"promise-events": "^0.1.4",
"prompts": "^2.0.2",
"sequelize": "^4.42.1",
"sequelize-cli": "^5.4.0",
"serve-static": "^1.13.2",
"short-uuid": "^3.1.0",
"yup": "^0.26.10"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^5.13.0",
"mocha": "^5.2.0",
"mongoose-data-seeder": "^1.0.3",
"nodemon": "^1.18.10"
}
}