generated from fredmaiaarantes/simpletasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "simpletasks",
"author": "@fredmaiaarantes",
"version": "1.0.2",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy,web.cordova",
"eslint": "eslint . --fix",
"prettier": "prettier --write \"**/*.js\" \"**/*.jsx\"",
"check": "npm run eslint && npm run prettier",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"wait-on-localhost": "wait-on http://localhost:3000 --httpTimeout 2400000"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.9",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@hookform/resolvers": "^2.9.8",
"@react-icons/all-files": "^4.1.0",
"bcrypt": "^5.0.1",
"cypress": "^11.2.0",
"framer-motion": "^6.5.1",
"grubba-rpc": "^0.7.4",
"history": "^5.3.0",
"meteor-node-stubs": "^1.2.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.36.1",
"react-router-dom": "^6.4.1",
"simpl-schema": "^1.13.1",
"wait-on": "^6.0.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.7",
"@types/meteor": "^2.7.1",
"@types/mocha": "^9.1.1",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17"
},
"meteor": {
"mainModule": {
"client": "ui/main.jsx",
"server": "api/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"
]
}
}
}
}
}