-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "service-purchase",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"react-dev": "webpack -d --watch",
"start": "nodemon server.js --watch",
"init_schema": "mysql -u root -p < ./database/purchase.sql",
"seed": "node database/data_generator.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Merry-Men/service-purchase.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/The-Merry-Men/service-purchase/issues"
},
"homepage": "https://github.com/The-Merry-Men/service-purchase#readme",
"dependencies": {
"babel-eslint": "^10.0.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"faker": "^4.1.0",
"mysql": "^2.16.0",
"nodemon": "^1.18.4",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"redux": "^4.0.1",
"styled-components": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"react-test-renderer": "^16.6.0",
"webpack": "^4.23.0",
"webpack-cli": "^3.1.2"
}
}