-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "item-checkout",
"version": "1.0.0",
"description": "Item Checkout Component",
"author": "Andrew Tjandra",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"seed": "node ./db/seed.js",
"start": "nodemon ./server/index.js",
"build": "webpack -d --watch",
"test": "jest --verbose",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@material-ui/core": "^4.4.0",
"axios": "^0.19.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"mongoose": "^5.6.10",
"mongoose-currency": "^0.2.0",
"nodemon": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-modal": "^3.10.1",
"react-star-ratings": "^2.3.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-styled-components": "^6.3.3",
"regenerator-runtime": "^0.13.3",
"supertest": "^4.0.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"repository": {
"type": "git",
"url": "git://github.com/hrr40-fec1/item-checkout.git"
}
}