-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "binder-launches",
"version": "0.1.0",
"description": "A parser to parse mybinder.org launch events and a react table to view them.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bitnik/binder-launches.git"
},
"keywords": [
"binder",
"launches",
"table",
"react",
"material"
],
"homepage": "/",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/data-grid": "^4.0.0-alpha.21",
"@material-ui/icons": "^4.11.2",
"express": "^4.17.1",
"express-pino-logger": "^6.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"pino": "^6.11.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.3",
"sequelize": "^6.5.1",
"sequelize-cli": "^6.2.0"
},
"scripts": {
"start": "npm run build && node server/server.js",
"start-client": "react-scripts start",
"start-server": "node server/server.js",
"build": "react-scripts build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"proxy": "http://localhost:3001",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"pino-pretty": "^4.7.1"
}
}