generated from fredmaiaarantes/simpletasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.85 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
{
"name": "simpletasks",
"author": "@victorfds",
"version": "1.0.2",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy,web.cordova",
"test": "meteor test --once --driver-package meteortesting:mocha",
"eslint": "eslint . --fix",
"prettier": "prettier --write \"**/*.js\" \"**/*.jsx\"",
"check": "npm run eslint && npm run prettier",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.22.15",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^2.9.11",
"@react-icons/all-files": "^4.1.0",
"bcrypt": "^5.1.1",
"framer-motion": "^6.5.1",
"history": "^5.3.0",
"meteor-node-stubs": "^1.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.46.2",
"react-router-dom": "^6.16.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.7",
"@types/meteor": "^2.9.4",
"@types/mocha": "^9.1.1",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"chai": "^4.3.8"
},
"meteor": {
"mainModule": {
"client": "ui/main.jsx",
"server": "api/main.js"
},
"testModule": "tests/main.js"
},
"husky": {
"hooks": {
"pre-commit": "meteor npm test && lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.{js|jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"@quave/quave"
],
"settings": {
"import/resolver": {
"meteor": {
"extensions": [
".js",
".jsx"
]
}
}
}
}
}