forked from Real-Dev-Squad/website-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.21 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "run-s build:*",
"build:css": "yarn generate:css --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "yarn generate:css --watch",
"dev:remix": "remix dev",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"postinstall": "remix setup node",
"check-format": "prettier --check .",
"format": "prettier --write .",
"check-lint": "eslint .",
"lint": "eslint --fix .",
"style-lint": "stylelint **/*.css",
"start": "remix-serve build",
"prepare": "husky install",
"test": "jest",
"test:ci": "jest --coverage --silent --ci",
"sb": "start-storybook -p 6006",
"build-sb": "build-storybook"
},
"dependencies": {
"@heroicons/react": "^2.0.13",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-icons": "^1.1.1",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.7.4",
"@remix-run/serve": "^1.7.4",
"@toast-ui/react-calendar": "^2.1.3",
"axios": "^1.2.1",
"lodash.debounce": "^4.0.8",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-big-calendar": "^1.5.2",
"react-dom": "^18.2.0",
"remix": "^1.7.4"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@remix-run/dev": "^1.7.4",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.3.0",
"@types/jest": "^29.2.3",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.0.24",
"@types/react-big-calendar": "^0.38.2",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.0.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-storybook": "^0.6.6",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"prettier": "2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.0.0",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"volta": {
"node": "16.16.0",
"yarn": "1.22.17"
},
"resolutions": {
"**/trim": "^1.0.0"
}
}