-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "swed-wallet",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy,web.cordova",
"eslint": "eslint . --fix",
"prettier": "prettier --write \"**/*.js\"",
"check": "npm run eslint && npm run prettier",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"aos": "^2.3.4",
"autoprefixer": "^10.4.4",
"meteor-node-stubs": "^1.2.1",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"react-router-dom": "^6.3.0",
"simpl-schema": "^1.12.2",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.7",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.1",
"@tailwindcss/typography": "^0.5.2",
"@types/meteor": "^2.0.4",
"@types/meteor-astronomy": "^2.6.6",
"@types/meteor-mdg-validated-method": "^1.2.3",
"@types/mocha": "^8.2.3",
"@types/simpl-schema": "^1.12.2"
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
}
},
"husky": {
"hooks": {
"pre-commit": "meteor npm test && lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"@quave/quave"
]
}
}