-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (80 loc) · 1.98 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
75
76
77
78
79
80
81
{
"name": "photo",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"scripts": {
"dev": "webpack --watch",
"start": "nodemon server/serverIndex.js",
"seed": "node ./database/seed.js",
"lint": "eslint --ignore-path .gitignore . --fix",
"test": "jest --coverage --"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/webpack-babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"globals": {
"window": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/JISHAX/photo.git"
},
"keywords": [
"node",
"heroku",
"express"
],
"dependencies": {
"babel-jest": "^23.6.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-http-proxy": "^1.4.0",
"faker": "^4.1.0",
"jquery": "^3.3.1",
"mongoose": "^5.4.19",
"nodemon": "^1.18.4",
"path": "^0.12.7",
"prop-types": "^15.6.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-modal": "^3.6.1",
"request": "^2.88.0",
"sinon": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-babel-jest": "^1.0.4",
"webpack-cli": "^3.3.0"
}
}