This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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
{
"name": "@bigtest/server",
"version": "0.1.0",
"description": "BigTest Server",
"main": "index.js",
"repository": "https://github.com/bigtestjs/server.git",
"author": "Frontside Engineering <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node -r module-alias/register bin/start.ts",
"watch": "ts-node -r module-alias/register bin/watch.ts",
"query": "ts-node -r module-alias/register bin/query.ts",
"subscribe": "ts-node -r module-alias/register bin/subscribe.ts",
"lint": "eslint 'src/**/*.ts' 'bin/**/*.ts'",
"test": "mocha -r ./test/setup test/**/*.test.ts",
"mocha": "mocha -r ./test/setup",
"test:app:start": "bigtest-todomvc 24000"
},
"devDependencies": {
"@bigtest/todomvc": "^0.1.0-31b9020",
"@types/mocha": "^5.2.7",
"@types/node-fetch": "^2.5.3",
"@types/ramda": "types/npm-ramda#dist",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"abort-controller": "^3.0.0",
"eslint": "^6.6.0",
"eslint-plugin-prefer-let": "^1.0.1",
"expect": "^24.9.0",
"mocha": "^6.2.2",
"node-fetch": "^2.6.0"
},
"dependencies": {
"@bigtest/agent": "^0.1.0-b37aeec",
"@types/express": "^4.17.1",
"@types/graphql": "^14.5.0",
"@types/http-proxy": "^1.17.0",
"@types/node": "^12.7.11",
"@types/websocket": "^1.0.0",
"bowser": "^2.8.1",
"chokidar": "^3.3.1",
"effection": "^0.5.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"glob": "^7.1.6",
"graphql": "^14.5.8",
"http-proxy": "^1.18.0",
"module-alias": "^2.2.2",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"ramda": "^0.26.1",
"rimraf": "^3.0.0",
"tempy": "^0.3.0",
"trumpet": "^1.7.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"websocket": "^1.0.30",
"yargs": "^15.0.2"
},
"engines": {
"node": "12.11.1"
},
"volta": {
"node": "12.11.1",
"yarn": "1.19.1"
},
"_moduleAliases": {
"@effection": "src/effection"
}
}