-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.4 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.4 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
69
70
71
72
73
74
75
76
77
{
"name": "Backend",
"version": "1.0.0",
"description": "## Anonymous feedback Application",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"migrate": "npx sequelize-cli db:migrate:undo:all && npx sequelize-cli db:migrate",
"seed": "npx sequelize-cli db:seed:undo:all && npx sequelize-cli db:seed:all",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles --testTimeout=10000 --forceExit",
"pretest": "cross-env NODE_ENV=test npx sequelize-cli db:migrate:undo:all && cross-env NODE_ENV=test npx sequelize-cli db:migrate",
"coverage": "jest --coverage --detectOpenHandles --testTimeout=10000 && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labseu2-anonymous-team-feedback/Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/labseu2-anonymous-team-feedback/Backend/issues"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/helpers/*",
"/models/*",
"auth/passportConfig.js",
"validations/*"
],
"collectCoverage": true,
"verbose": true
},
"homepage": "https://github.com/labseu2-anonymous-team-feedback/Backend#readme",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"apollo-datasource": "^0.6.1",
"apollo-server-express": "^2.8.1",
"apollo-server-testing": "^2.9.0",
"auto-bind": "^2.1.0",
"bcrypt": "^3.0.6",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"cross-env": "^5.2.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"graphql": "^14.4.2",
"graphql-resolvers": "^0.3.3",
"graphql-tag": "^2.10.1",
"helmet": "^3.20.0",
"jsonwebtoken": "^8.5.1",
"mailgen": "^2.0.8",
"merge-graphql-schemas": "^1.7.0",
"passport": "^0.4.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"passport-google-token": "^0.1.2",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.15.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
}
}