-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "wams",
"description": "Workspaces Across Multiple Surfaces",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hcilab/wams"
},
"scripts": {
"build": "parcel build",
"build:debug": "parcel build --no-optimize",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write src tests examples",
"format:check": "prettier --check src tests examples",
"docs": "jsdoc -c .jsdocrc.json",
"test": "jest",
"test:debug": "node inspect $(npm bin)/jest --runInBand"
},
"dependencies": {
"canvas-sequencer": "^3.0.6",
"core-js": "^3",
"express": "^4.17.1",
"normalize-wheel": "^1.0.1",
"socket.io": "^4.6.2",
"socket.io-client": "^4.6.2",
"westures": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"arkit": "^1.6.4",
"buffer": "^5.7.1",
"docdash": "^2.0.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdoc": "^4.0.2",
"jsdom": "^21.1.1",
"parcel": "^2.8.3",
"prettier": "^2.8.7",
"process": "^0.11.10"
},
"targets": {
"client": {
"source": "src/client.js",
"distDir": "dist"
}
}
}