-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (85 loc) · 2.58 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
82
83
84
85
86
{
"name": "",
"version": "",
"description": "",
"author": "Felipe Parreira",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "nodemon ./server/server.js",
"react-dev": "webpack -d --watch",
"db": "mysql -u root -p < db/schema.sql && node db/dataSaver.js",
"test": "jest sum.test.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.5",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"jquery": "^3.3.1",
"moment": "^2.23.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.4",
"node-fetch": "^2.3.0",
"path": "^0.12.7",
"radium": "^0.25.1",
"react": "^16.7.0",
"react-css-modules": "^4.7.8",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sequelize": "^4.42.0",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.2",
"webpack-combine-loaders": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"css-loader": "^2.1.0",
"css-selector": "^0.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.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",
"extract-text-webpack-plugin": "^3.0.2",
"faker": "^4.1.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-tobetype": "^1.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-mocks-http": "^1.7.3",
"nodemon": "^1.18.9",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2",
"puppeteer": "^1.11.0",
"regenerator-runtime": "^0.13.1",
"static-site-generator-webpack-plugin": "^3.4.2",
"style-loader": "^0.23.1",
"style-selector": "^2.0.3"
}
}