-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "people-also-bought",
"version": "1.0.0",
"description": "RobinHood suggestion section",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"react-dev": "webpack -d --watch",
"build": "webpack -p",
"start": "nodemon server/index.js",
"seed": "node ./database/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/math-dot-random/suggestions.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/math-dot-random/suggestions/issues"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0-beta.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"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",
"jest": "^24.8.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"mysql": "^2.17.1",
"nodemon": "^1.19.0",
"path": "^0.12.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-simple-tooltip": "^2.6.0",
"react-tippy": "^1.2.3",
"sequelize": "^5.8.7",
"styled-components": "^4.2.0",
"supertest": "^4.0.2"
}
}