-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.35 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
85
86
87
{
"name": "ghrsea11-fec-gallery",
"version": "1.0.0",
"description": "Halvsy Gallery Service - A standalone gallery component",
"main": "index.js",
"scripts": {
"start": "node ./server/index.js",
"test": "jest --coverage",
"test-leak": "jest --coverage --runInBand --detectOpenHandles",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack -d --watch --config webpack.dev.js",
"server": "nodemon --watch server --watch database ./server/index.js",
"reset-db": "mysql -h gallery-db -ustudent -pstudent < database/schema.sql",
"seed-db": "node utils/database/seedDb.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamchupacabramcthundercats/etsy-gallery.git"
},
"keywords": [
"Hack",
"Reactor",
"Front",
"End",
"Capstone"
],
"author": "Joel Carpenter",
"license": "ISC",
"bugs": {
"url": "https://github.com/teamchupacabramcthundercats/etsy-gallery/issues"
},
"homepage": "https://github.com/teamchupacabramcthundercats/etsy-gallery#readme",
"dependencies": {
"axios": "^0.21.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"jest-extended": "^0.11.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"npm": "^6.14.7",
"sharp": "^0.25.4",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.2"
},
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js",
"jest-extended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
}
}