-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.78 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
{
"name": "party",
"version": "0.1.2",
"description": "JavaScript assets for https://chancesnow.me/party",
"private": true,
"scripts": {
"test": "make test",
"test:ts": "ts-node node_modules/tape/bin/tape ts/test/**/*.spec.ts | faucet",
"lint": "tslint --project ."
},
"repository": "git+https://github.com/chances/party.git",
"author": "Chance Snow <git@chancesnow.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chances/party/issues"
},
"homepage": "https://github.com/chances/party",
"devDependencies": {
"@sentry/cli": "^1.52.3",
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.11",
"@types/isomorphic-fetch": "^0.0.35",
"@types/node": "^13.13.4",
"@types/proxyquire": "^1.3.28",
"@types/tape": "^4.13.0",
"browser-sync": "^2.26.12",
"chai": "^4.2.0",
"codecov": "^3.7.1",
"concurrently": "^7.0.0",
"esbuild": "0.23.1",
"faucet": "^0.0.1",
"nyc": "^15.0.1",
"proxyquire": "^2.1.3",
"sane": "^4.1.0",
"sass": "^1.77.8",
"tap-dot": "^2.0.0",
"tape": "^5.8.0",
"ts-node": "^6.2.0",
"tslint": "^6.1.2",
"typescript": "^3.9.10",
"uglify-js": "^3.9.1"
},
"dependencies": {
"@aspnet/signalr": "^1.1.4",
"@most/create": "^2.0.1",
"bluebird": "^3.7.2",
"isomorphic-fetch": "^3.0.0",
"lit-html": "^1.0.0-rc.2",
"localforage": "^1.7.3",
"mobx": "^4.9.2",
"monet": "^0.9.1",
"most": "^1.7.3",
"raven-js": "^3.27.2",
"spotify-web-api-js": "^0.23.0"
},
"nyc": {
"include": [
"ts/**/*.ts"
],
"exclude": [
"ts/**/*.d.ts",
"ts/test"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": true
}
}