-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.21 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.21 KB
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
{
"name": "django-react-typescript-frontend",
"version": "0.1.0",
"private": true,
"main": "index.js",
"repository": "https://github.com/marcelovicentegc/django-react-typescript.git",
"author": "Marcelo Cardoso <dev@marcelo.page>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"unused": "pnpm unimported",
"postinstall": "postcss ./tailwind.css -o ./lib/index.css",
"build": "cross-env webpack --config webpack.config.js",
"dev:react": "cross-env webpack-dev-server --progress --host 0.0.0.0",
"dev:css": "postcss ./tailwind.css -o ./lib/index.css --watch",
"dev": "concurrently -n css,react \"pnpm run dev:css\" \"pnpm run dev:react\"",
"test:static": "tsc -p tsconfig.json --noEmit",
"test": "jest \"(/__tests__/.)*\\.tsx?$\" --coverage --colors --silent",
"test:watch": "jest \"(/__tests__/.)*\\.tsx?$\" --coverage --colors --watch"
},
"dependencies": {
"@heroicons/react": "^2.1.4",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"dayjs": "^1.8.29",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"flowbite-react": "^0.10.1",
"query-string": "^6.13.0",
"react-router-dom": "^6.23.1",
"tailwindcss": "^3.4.4"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@types/node": "^20.14.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"internal-ip": "^5.0.0",
"concurrently": "^8.2.2",
"css-loader": "^3.6.0",
"dotenv-webpack": "^8.1.0",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.4.39",
"postcss-cli": "^11.0.0",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"typescript": "^5.4.5",
"unimported": "^1.31.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-manifest-plugin": "^5.0.0",
"workbox-webpack-plugin": "^7.1.0"
}
}