-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 3.17 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "packosphere",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy --settings ./settings.json",
"start-production": "meteor run --exclude-archs web.browser.legacy --settings ./settings.json --production",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --settings ./settings.json --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.14.8",
"@octokit/rest": "^18.7.1",
"@slack/web-api": "^6.9.1",
"@tailwindcss/forms": "^0.3.3",
"bcrypt": "^5.0.1",
"gravatar": "^1.8.1",
"heroicons-react": "^1.4.1",
"human-number": "^1.0.6",
"meteor-node-stubs": "^1.1.0",
"parse-github-url": "^1.0.2",
"prop-types": "15.7.2",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-markdown": "^6.0.2",
"react-router-dom": "^6.26.2",
"react-syntax-highlighter": "^15.4.4",
"remark-gfm": "^1.0.0",
"s-ago": "^2.2.0",
"simpl-schema": "^1.12.0",
"slug": "^4.0.2",
"twitter": "^1.7.1"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/gravatar": "^1.8.3",
"@types/meteor": "^1.4.74",
"@types/mocha": "^8.2.0",
"@types/parse-github-url": "^1.0.0",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/simpl-schema": "^1.10.5",
"@types/slug": "^5.0.2",
"@types/twitter": "^1.7.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"autoprefixer": "^10.3.1",
"eslint": "^7.31.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"postcss": "^8.4.31",
"postcss-import": "^14.0.2",
"postcss-load-config": "^4.0.1",
"tailwindcss": "^3.3.1",
"typescript": "^4.3.5"
},
"eslintConfig": {
"extends": "standard-with-typescript",
"rules": {
"@typescript-eslint/restrict-template-expressions": "off",
"semi": "off",
"@typescript-eslint/semi": [
2,
"always"
],
"comma-dangle": [
2,
"always-multiline"
],
"no-void": "off"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"settings": {}
},
"postcss": {
"plugins": {
"postcss-import": {},
"tailwindcss": {},
"autoprefixer": {}
}
},
"browserslist": {
"developent": [
"last 1 version"
],
"production": [
"> 1%",
"ie 10"
]
},
"meteor": {
"mainModule": {
"client": "client/main.ts",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
}
}