-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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
{
"name": "Additional-Items",
"version": "1.0.0",
"description": "This will be the component that renders the additional items for sale from the seller.",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --coverage --forceExit",
"circle:test": "jest",
"seed": "node ./dummyData/seeder",
"dev:build": "webpack --watch",
"build": "webpack",
"dev:start": "nodemon -i src -i public -i npm_modules -i __tests__ server",
"start": "node server",
"dataGen": "node database/dataGen/genDataV02.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-Kylo/Additional-Items.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Team-Kylo/Additional-Items/issues"
},
"homepage": "https://github.com/Team-Kylo/Additional-Items#readme",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"cassandra-driver": "^4.4.0",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^8.2.0",
"eslint-plugin-react-hooks": "^2.3.0",
"express": "^4.17.1",
"express-static-gzip": "^2.0.6",
"faker": "^4.1.0",
"fast-csv": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"newrelic": "^6.4.2",
"pg": "^7.18.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.0",
"webpack": "^4.41.5"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.7",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"fetch-mock": "^9.0.0-beta.2",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"webpack-cli": "^3.3.10"
}
}