forked from HRR47-SDC-OMalley/Reviews-Service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.48 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "seller-reviews",
"version": "1.0.0",
"description": "Seller Reviews Module.",
"main": "index.js",
"scripts": {
"test": "$(npm bin)/artillery run spec/artillery-config.yaml",
"start": "NODE_ENV=production node server/index.js",
"dev": "nodemon -r dotenv/config server/index.js",
"build": "webpack -p",
"build:watch": "webpack -d --watch",
"seed": "node database/dataGenerationScript.js",
"copypgtocsv": "node database/postgres/copyToCSV.js",
"copyfromcsv": "node database/copyToDatabase.js",
"createpgtables": "node ./database/postgres/createPgTables.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HRR47-FEC-Burke/seller-reviews.git"
},
"author": "Zach Mansell",
"license": "ISC",
"bugs": {
"url": "https://github.com/HRR47-FEC-Burke/seller-reviews/issues"
},
"jest": {
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
]
},
"homepage": "https://github.com/HRR47-FEC-Burke/seller-reviews#readme",
"dependencies": {
"babel": "^6.23.0",
"babel-loader": "^8.1.0",
"colors": "^1.4.0",
"csv-write-stream": "^2.0.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"jquery": "^3.5.1",
"newrelic": "^6.13.0",
"performance-now": "^2.1.0",
"pg": "^8.3.3",
"pg-copy-streams": "^5.1.1",
"pg-hstore": "^2.3.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sequelize": "^6.3.4",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"artillery": "^1.6.1",
"babel-plugin-styled-components": "^1.11.1",
"cassandra-driver": "^4.6.0",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"express-cassandra": "^2.4.0",
"grunt": "^1.3.0",
"grunt-aws-s3": "^2.0.2",
"grunt-cli": "^1.3.2",
"grunt-s3": "^0.2.0-alpha.3",
"grunt-webpack": "^4.0.2",
"jest": "^26.3.0",
"jest-enzyme": "^7.1.2",
"nodemon": "^2.0.4",
"sinon": "^9.0.2",
"tweed-random": "^1.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}