-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "devc-eldoret-frontend",
"version": "1.0.0",
"description": "Developer Circles Eldoret Website",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"build": "webpack --mode production",
"lint": "eslint src --ext tsx",
"test": "jest --config jest.config.json",
"bundle-report": "webpack --prod --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint && npm test"
}
},
"dependencies": {
"react": "^16.12.0",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.0",
"react-icons": "^3.8.0",
"react-particles-js": "^2.7.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2"
},
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.7.7",
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.25",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.5",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^3.1.1",
"file-loader": "^5.0.2",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"style-loader": "^1.2.1",
"typescript": "^3.7.4",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"author": "Developer Circles Community",
"license": "ISC",
"homepage": "https://devceldoret.github.io/"
}