-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1011 Bytes
/
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
{
"name": "@timmyjose/dojo-tasks-theme",
"version": "0.2.0",
"description": "Custom theme for the Dojo Tasks project",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/timmyjose-projects/dojo-tasks-theme",
"license": "MIT",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"clean": "rimraf dist/* &",
"build": "yarn clean && tsc && webpack",
"prepare": "yarn build",
"fix": "yarn eslint \"./src/**/*.{ts,tsx}\" --fix"
},
"author": "Timmy Jose",
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"framer-motion": "^10.16.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"rimraf": "^5.0.4",
"ts-loader": "^9.4.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}