This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
78
{
"name": "server",
"version": "1.0.0",
"description": "I'm working to implement projects from famous courses together.",
"main": "app.js",
"engines": {
"node": ">=10.11.0",
"yarn": ">=1.17.3"
},
"author": "Mohammed Faragallah",
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mohammedFaragallah/react.git"
},
"bugs": {
"url": "https://github.com/mohammedFaragallah/react/issues"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"cookie-session": "^2.0.0-beta.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"handlebars": "^4.0.12",
"method-override": "^3.0.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"sendgrid": "^5.2.3",
"stripe": "^6.12.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-register": "^6.26.0",
"concurrently": "^4.0.1",
"dotenv": "^6.1.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-jest": "^21.25.1",
"eslint-watch": "^4.0.2",
"husky": "^1.1.2",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"supertest": "^3.3.0"
},
"scripts": {
"webhook": "lt -p 5000 -s mohammedafaragallah",
"start": "node app.js",
"precommit": "pretty-quick --staged",
"heroku-postbuild": "cd client && yarn && yarn --only=dev --no-shrinkwrap && yarn build",
"server:env": "nodemon app.js --exec \"node -r dotenv/config -r babel-register\"",
"server": "nodemon app.js --exec \"node -r babel-register\""
}
}