-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "component-reviews-bl",
"jest": {
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"verbose": true
},
"version": "1.0.0",
"description": "Review componenet for Skybnb",
"main": "index.jsx",
"scripts": {
"start": "node server/server.js",
"build": "webpack --watch",
"seed-data": "node server/dbs/data.seed.js",
"test": "jest",
"production": "npm run seed-data && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sky-bnb/component-reviews-bl.git"
},
"author": "Brian L",
"license": "ISC",
"bugs": {
"url": "https://github.com/sky-bnb/component-reviews-bl/issues"
},
"homepage": "https://github.com/sky-bnb/component-reviews-bl#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"faker": "^4.1.0",
"identity-obj-proxy": "^3.0.0",
"jest-enzyme": "^7.0.2",
"mongoose": "^5.5.9",
"morgan": "^1.9.1",
"nodemon": "^1.19.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"supertest": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest": "^24.8.0",
"style-loader": "^0.23.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
}
}