-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 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
78
79
80
81
{
"name": "auth-starter",
"version": "1.0.0",
"engines": {
"node": "12.14.1",
"npm": "6.13.6"
},
"repository": {
"type": "git",
"url": "https://github.com/ninth-mind/auth-starter-2.0"
},
"scripts": {
"dev": "nodemon -w server server/server.js",
"build": "next build ./src",
"stage": "NODE_ENV=development node server/server.js",
"start": "NODE_ENV=production node server/server.js",
"test-dev": "jest",
"test": "jest && snyk test"
},
"dependencies": {
"@babel/preset-env": "^7.8.3",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"antd": "^3.26.7",
"axios": "^0.19.2",
"babel-plugin-import": "^1.13.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cron": "^1.8.1",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"fibers": "^4.0.2",
"fs": "0.0.1-security",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"less-vars-to-js": "^1.3.0",
"local-storage": "^2.0.0",
"moment": "^2.24.0",
"mongoose": "^5.8.9",
"mongoose-unique-validator": "^2.0.3",
"next": "^9.0.7",
"next-images": "^1.3.0",
"node-sass": "^4.13.1",
"nodemailer": "^6.4.2",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"rate-limiter-flexible": "^1.3.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-google-recaptcha": "^1.1.0",
"react-redux": "^5.1.2",
"react-showdown": "^1.6.0",
"react-stripe-elements": "^2.0.3",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"sass": "^1.25.0",
"stripe": "^7.15.0",
"validator": "^10.11.0",
"xoauth2": "^1.2.0"
},
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"babel-eslint": "^10.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-react": "^7.18.0",
"eslint": "^5.16.0",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"prettier": "^1.19.1",
"snyk": "^1.279.1"
}
}