-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.34 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
83
84
{
"name": "minc-tech-reviews-module",
"version": "1.0.0",
"description": "",
"jest": {
"setupFilesAfterEnv": [
"<rootDir>tests/setupTests.js"
],
"clearMocks": true,
"coverageDirectory": "coverage",
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"verbose": true
},
"main": "index.js",
"author": "",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"react-dev": "webpack -d -p --watch",
"server-dev": "nodemon server/index.js -w",
"test": "jest --coverage",
"csv": "node --max-old-space-size=8192 ./database/datagenerator.js",
"create-p": "psql postgres -f ./database/postgresql/schema.sql",
"create-c": "cqlsh -f ./database/cassandra/schema.cql",
"artillery": "artillery run hello.yml"
},
"dependencies": {
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"cassandra-driver": "^4.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"faker": "^4.1.0",
"file-system": "^2.2.2",
"morgan": "^1.9.1",
"newrelic": "^5.13.1",
"nodemon": "^2.0.20",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-star-ratings": "^2.3.0",
"redis": "^3.1.1",
"sequelize": "^6.29.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.3.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-airbnb": "^4.4.0",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^10.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor.git",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"express-static-gzip": "^2.0.6",
"jest": "^29.3.1",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"prop-types": "^15.7.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
}
}