-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 956 Bytes
/
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
{
"name": "sprocket-js",
"version": "0.4.1",
"license": "MIT",
"source": "client/src/sprocket.ts",
"main": "client/dist/sprocket.js",
"types": "client/dist/types.d.ts",
"devDependencies": {
"@parcel/packager-ts": "2.9.2",
"@parcel/transformer-typescript-types": "2.9.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.0.1",
"jest": "^29.5.0",
"parcel": "^2.9.2",
"process": "^0.11.10",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"scripts": {
"client:build": "parcel build client/src/sprocket.ts",
"client:test": "jest",
"clean": "rm -rf build dist .parcel-cache priv/static/**",
"test": "gleam test && yarn run client:test",
"build": "gleam build && yarn run client:build"
},
"dependencies": {
"reconnecting-websocket": "^4.4.0",
"snabbdom": "^3.5.1",
"topbar": "^2.0.1"
}
}