-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.13 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "census-admin-panel",
"version": "1.0.0",
"description": "The admin panel for managing census entities",
"main": "index.tsx",
"scripts": {
"start": "node server.js",
"dev": "webpack-dev-server --config webpack.config.js --hot --open",
"build": "webpack --config webpack.config.js --mode production",
"lint": "tsc --noEmit && eslint '*/**/*.{ts,tsx}' --quiet --fix",
"postlint": "echo ✅ lint valid",
"test": "jest --config jest.config.json",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"heroku-postbuild": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/noghanodedra/census-admin-panel.git"
},
"keywords": [
"census",
"npr"
],
"author": "Noghan Odedra",
"license": "ISC",
"bugs": {
"url": "https://github.com/noghanodedra/census-admin-panel/issues"
},
"homepage": "https://github.com/noghanodedra/census-admin-panel#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.3.0",
"node-sass": "^4.13.1",
"path": "^0.12.7",
"prettier": "^2.0.4",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.4",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"@types/dotenv": "^8.2.0",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/react-loader-spinner": "^3.1.0",
"apollo-boost": "^0.4.7",
"babel-plugin-react-intl": "^7.5.4",
"clsx": "^1.1.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"i18next": "^19.4.2",
"i18next-browser-languagedetector": "^4.1.1",
"i18next-xhr-backend": "^3.2.2",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-i18next": "^11.3.5",
"react-icons": "^3.9.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}