-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"test": "jest",
"start": "node database/seed.js & node server/index.js",
"build": "webpack -w",
"seed": "node database/seed.js"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"axios": "^0.21.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"express": "^4.17.1",
"frisby": "^2.1.3",
"jest": "^24.0.0",
"jest-cli": "^26.6.3",
"mocha": "^8.2.1",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"node": "^15.4.0",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.2.0",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"sequelize": "^6.3.5",
"styled-components": "^5.2.1",
"transform-loader": "^0.2.4",
"webpack": "^5.13.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"expect": "^26.6.2",
"sequelize-cli": "^6.2.0",
"supertest": "^6.0.1",
"webpack-cli": "^4.3.1"
}
}