-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.94 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
{
"author": "Thoa Ta (http://thriving-thoa.simplesite.com)",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"bugs": "https://github.com/thoat/monday-standup/issues",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.3",
"browserify-fs": "^1.0.0",
"collections": "^5.1.5",
"compression": "^1.7.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"http-proxy-middleware": "^0.19.0",
"morgan": "^1.9.1",
"pg": "^7.6.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-confirm-alert": "^2.0.6",
"react-dom": "^16.5.2",
"react-scripts": "2.0.4",
"uuid": "^3.3.2"
},
"description": "Simple web app to faciliate standups in diverse teams",
"devDependencies": {
"babel-eslint": "9.0.0",
"concurrently": "^4.0.1",
"eslint": "5.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"nodemon": "^1.18.4"
},
"engines": {
"node": ">= 8",
"npm": ">= 5",
"yarn": ">= 1"
},
"eslintConfig": {
"extends": "react-app"
},
"keywords": [
"diverse",
"pairing",
"simple",
"standups",
"teams",
"web app"
],
"name": "monday-standup",
"private": true,
"repository": "github:thoat/monday-standup",
"scripts": {
"build": "react-scripts build",
"client": "react-scripts start",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"eject": "react-scripts eject",
"heroku-postbuild": "yarn build",
"heroku-prebuild": "cp ./src/data-sample.js ./src/data.js",
"lint": "node_modules/.bin/eslint ",
"lintall": "node_modules/.bin/eslint .",
"server": "nodemon express.js",
"start": "node express.js",
"test": "react-scripts test"
},
"version": "0.1.0"
}