-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.33 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
{
"name": "communalists",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jadeallencook/communalists.git"
},
"author": "@jadeallencook",
"license": "ISC",
"bugs": {
"url": "https://github.com/jadeallencook/communalists/issues"
},
"homepage": "https://www.communalists.com",
"scripts": {
"start": "webpack serve --hot --open --mode development",
"build": "webpack --config webpack.config.js --mode production",
"mock": "ts-node ./jobs/mock-database.ts",
"pretty": "prettier --write \"./**/*.{ts,tsx,css,json}\"",
"test": "jest --passWithNoTests",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": "prettier --write --ignore-unknown",
"**/*.tsx": "prettier --write --ignore-unknown"
},
"dependencies": {
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"bootstrap": "^5.2.2",
"firebase": "^9.15.0",
"formik": "^2.2.9",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.4.0",
"styled-components": "^5.3.5",
"typescript": "^4.8.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jest": "^29.5.1",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"git-commit-msg-linter": "^4.4.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"style-loader": "^3.3.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.0",
"ts-node": "^10.9.1",
"validate-branch-name": "^1.3.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"resolutions": {
"styled-components": "^5"
}
}