-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.94 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.94 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
{
"name": "HomeChefTransactions",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"dev-build": "webpack --mode development --watch",
"dev-server": "nodemon --inspect --exec babel-node --presets env server/index.js",
"lint": "eslint 'src/*.jsx' database server",
"postinstall": "webpack --mode production",
"start": "webpack --mode production && node server/index.js",
"test": "npm run lint",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndromedaInc/HomeChefTransactions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndromedaInc/HomeChef/issues"
},
"jest": {
"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"
}
},
"homepage": "https://github.com/AndromedaInc/HomeChef#readme",
"dependencies": {
"apollo-boost": "^0.1.16",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"bcrypt": "^3.0.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cross-fetch": "^2.2.2",
"dotenv": "^6.0.0",
"es6-promise": "^4.2.5",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-jwt": "^5.3.1",
"fs": "0.0.1-security",
"google-maps-react": "^2.0.2",
"graphql": "^0.13.0",
"graphql-tag": "^2.9.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"mysql2": "^1.6.1",
"nodemon": "^1.18.4",
"react": "^16.5.2",
"react-apollo": "^2.2.3",
"react-dom": "^16.5.2",
"react-loadable": "^5.5.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-stripe-elements": "^2.0.1",
"react-test-renderer": "^16.5.2",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sequelize": "^4.39.0",
"stripe": "^6.12.1",
"supertest": "^3.3.0",
"webpack": "^4.20.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"html-loader": "^0.5.5",
"style-loader": "^0.23.1",
"webpack-cli": "^3.1.1"
},
"devDependencies": {
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1"
}
}