forked from highly-caffeinated/kyle-related-items-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev-build": "webpack -d -w",
"db:setup": "node database/seed.js",
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "jest --collectCoverage",
"k6": "k6 run -d 10s -u 1 k6/singleTest.js"
},
"dependencies": {
"axios": "^0.21.1",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"newrelic": "^7.1.1",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sequelize": "^6.5.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.6",
"css-loader": "^5.0.1",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"k6": "0.0.0",
"nodemon": "^1.19.3",
"react-test-renderer": "^17.0.1",
"style-loader": "^2.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}