-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.57 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.57 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cribs-and-spaces",
"version": "1.0.0",
"description": "An interior design company web app",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/app.js ",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "webpack --mode production ",
"heroku-postbuild": "npm run build",
"start": "node build/app.js",
"webpack": "webpack",
"precommit": "lint-staged",
"test": ""
},
"lint-staged": {
"*.{js,jsx}": [
"git add"
]
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-boost": "^0.4.4",
"babel-preset-env": "^2.0.0-alpha.20",
"bcryptjs": "^2.4.3",
"chai-http": "^4.2.0",
"classnames": "^2.2.6",
"express": "^4.16.3",
"graphql": "^14.5.8",
"joi": "^14.0.1",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.6",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react-apollo": "^3.1.3",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-spring": "^8.0.27",
"swagger-ui-express": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/joi": "^13.6.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^4.2.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.0",
"nyc": "^14.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tailwindcss": "^1.0.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
}
}