This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "crows-nest",
"description": "A website for writing puzzle hunts",
"contributors": [
"Evan Broder <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deathandmayhem/crows-nest"
},
"private": true,
"scripts": {
"start": "meteor run",
"lint": "tsc --noEmit && eslint --ext js,jsx,ts,tsx .",
"test": "tsd && 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"
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"fp-ts": "^2.11.8",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"meteor-node-stubs": "^1.1.0",
"monocle-ts": "^2.3.12",
"newtype-ts": "^0.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/meteor": "^2.0.4",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tsdoc": "^0.2.14",
"mocha": "^9.2.0",
"tsd": "^0.19.1",
"typescript": "^4.5.5"
},
"meteor": {
"mainModule": {
"client": "client/main.ts",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
},
"types": "types/index.d.ts",
"tsd": {
"directory": "tests/types"
}
}