-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "meteor-apollo-react-starter",
"private": true,
"scripts": {
"start": "npm run start-full -- --exclude-archs web.browser.legacy",
"start-full": "meteor run",
"debug": "npm run start -- --inspect-brk",
"debug-full": "npm run start-full -- inspect-brk",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"kill": "kill -9 `ps ax | grep node | grep meteor | awk '{print $1}'`"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"bcrypt": "^5.0.1",
"meteor-node-stubs": "^1.0.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "1.0.9",
"react-router-dom": "^5.2.0",
"simpl-schema": "^1.12.0",
"streamqueue": "^1.1.2",
"string-to-stream": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.1.0",
"npdev-react-loadable-babel": "^1.1.0"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "test/main.js",
"nodeModules": {
"recompile": {
"simpl-schema": "legacy"
}
}
},
"babel": {
"plugins": [
"npdev-react-loadable-babel",
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h"
}
]
]
},
"browserslist": [
"> 1%",
"Android >= 4.4",
"IE >= 11",
"Firefox ESR"
],
"eslintConfig": {
"extends": [
"standard",
"standard-jsx"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"react-hooks"
],
"rules": {
"jsx-quotes": 0,
"import/no-absolute-path": 0,
"react/jsx-wrap-multilines": 0,
"react/jsx-closing-tag-location": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
}
},
"eslintIgnore": [
".meteor",
".vscode",
"packages",
"node_modules"
]
}