-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.26 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
{
"name": "melvin-service",
"version": "1.0.0",
"description": "initial description and photo gallery",
"author": "Melvin Viana",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"server": "node server/index.js",
"seed": "node database/seed.js",
"test": "jest",
"build-data": "node database/dataScript.js",
"create-db": "node database/createDb.js",
"artillery-get-test": "artillery run getConfig.yml",
"artillery-post-test": "artillery run postConfig.yml"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"artillery": "^1.6.0",
"aws-sdk": "^2.639.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"circleci-cli": "0.0.6",
"clean-webpack-plugin": "^3.0.0",
"cors": "^2.8.5",
"css-loader": "^3.4.2",
"csv-writer": "^1.6.0",
"es6": "0.0.7",
"express": "^4.17.1",
"faker": "^4.1.0",
"fs": "0.0.1-security",
"grunt-contrib-uglify": "^4.0.1",
"jest": "^25.1.0",
"jest-css-modules": "^2.1.0",
"jquery": "^3.4.1",
"mongodb": "^3.5.5",
"mongoose": "^5.9.4",
"newrelic": "^6.5.0",
"nodemon": "^2.0.2",
"path": "^0.12.7",
"pg": "^8.0.0",
"pgtools": "^0.3.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-styleable": "^3.3.2",
"style-loader": "^1.1.3",
"update": "^0.7.4",
"webpack": "^4.42.0",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-cli": "^6.26.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^4.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|less|scss|sss|styl)$": "<rootDir>/node_modules/jest-css-modules"
}
}
}