-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.87 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
{
"name": "google-react",
"version": "1.0.0",
"engines": {
"node": "12.13.0"
},
"description": "A Mern App that sources Google Books API and renders in React",
"main": "server.js",
"scripts": {
"test": "cd client && npm run test",
"lint": "eslint . --quiet",
"format": "prettier **/*.js --write",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+ https://github.com/armonkahil/grb2019.git"
},
"author": "Armon Roberts",
"license": "ISC",
"bugs": {
"url": "https://github.com/armonkahil/grb2019/issues"
},
"homepage": "https://github.com/armonkahil/grb2019#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"concurrently": "^5.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"nodemon": "^2.0.2",
"prettier": "^2.0.2"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"gradient-string": "^1.2.0",
"if-env": "^1.0.4",
"mongoose": "^5.9.7",
"socket.io": "^2.3.0"
}
}