-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
{
"name": "scouts",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy,web.cordova",
"test": "exit 0",
"quave-eslint": "eslint . --fix",
"quave-prettier": "prettier --write \"**/*.js\"",
"quave-check": "npm run quave-eslint && npm run quave-prettier"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@babel/runtime": "^7.8.4",
"@material-tailwind/react": "0.3.4",
"@tailwindcss/forms": "^0.3.3",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-ddp": "^3.0.0",
"apollo-link-error": "^1.1.13",
"autoprefixer": "^10.3.1",
"formik": "^2.2.6",
"graphql": "^15.0.0",
"graphql-load": "^0.1.1",
"graphql-tag": "^2.10.3",
"graphql-tools": "^5.0.0",
"meteor-node-stubs": "^1.0.0",
"postcss": "^8.3.6",
"postcss-load-config": "^3.1.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"simpl-schema": "^1.5.9",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.1-beta.1"
},
"eslintConfig": {
"extends": [
"@quave/quave"
],
"rules": {
"object-curly-newline": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "meteor npm test && lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
}
}