-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "kewl",
"version": "1.0.0",
"main": "./server/index.js",
"repository": "https://github.com/chatkewl/kewl.git",
"author": "Nafees Nehar <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node index.js",
"heroku-postbuild": "cd client && yarn && yarn run build",
"dev": "concurrently --kill-others-on-fail \"yarn run client\" \"yarn run server\"",
"client": "cd client && yarn start",
"server": "nodemon index",
"depcheck": "depcheck"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"depcheck": "^1.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"global": "^4.4.0",
"google-auth-library": "^6.1.3",
"mongodb": "^3.5.9",
"mongoose": "^5.9.25",
"yarn": "^1.22.10"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"nodemon": "^2.0.4",
"prettier": "2.1.2"
}
}