-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 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
{
"name": "hot-boards",
"version": "0.1.0",
"private": false,
"dependencies": {
"@material-ui/core": "^3.9.0",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"immutable": "^4.0.0-rc.12",
"mongoose": "^5.4.2",
"mongoose-unique-validator": "^2.0.2",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3",
"slate": "^0.44.9",
"slate-react": "^0.21.15",
"typeface-roboto": "0.0.54"
},
"devDependencies": {
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"yargs": "^13.2.2",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-loader": "8.0.4",
"babel-eslint": "9.0.0"
},
"scripts": {
"client": "react-scripts start",
"build": "react-scripts build",
"pretest": "./node_modules/.bin/eslint server src",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prod": "pm2 start server/index.js --interpreter ./node_modules/.bin/babel-node",
"clean": "rm -rf dist",
"start": "concurrently \"nodemon 'bin/dev'\" \"react-scripts start\"",
"migrate": "node ./scripts/migrate"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:3001",
"description": "Like reddit but without the downvotes/upvotes",
"main": "index.js",
"bin": {
"hot-boards": "dev.js"
},
"keywords": [],
"author": "Julia <jkmcgeoghan@myseneca.ca>",
"license": "ISC",
"repository": "https://github.com/jkmdev/hot-boards.git"
}