-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "falcor-server",
"version": "0.1.0",
"description": "juno falcor router server implementation",
"main": "dist/index.js",
"scripts": {
"lint": "tslint src/**/*.ts",
"clean": "rm -r dist/",
"build:tests": "tsc --project tsconfig-test.json",
"test": "npm run build:tests && NODE_ENV=test node dist_test/test/ | tap-summary",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"validate": "npm run lint && npm run test",
"build": "npm run clean && tsc"
},
"author": "James Conkling <[email protected]> jameslaneconkling.github.io",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"falcor-express": "^0.1.4",
"juno-falcor-router": "github:junonetwork/juno-falcor-router#master",
"ramda": "^0.26.1",
"rxjs": "^6.3.3",
"sparqljs": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/falcor-express": "^0.1.18",
"@types/ramda": "github:types/npm-ramda#dist",
"@types/query-string": "^6.1.1",
"@types/tape": "^4.2.32",
"query-string": "^6.2.0",
"tap-summary": "^4.0.0",
"tape": "^4.9.1",
"tsc-watch": "^1.0.31",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.1"
}
}