-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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": "console-view",
"version": "0.0.0",
"description": "",
"workspaces": [
"api",
"client",
"server"
],
"exports": {
"./require": "./api/lib/require.cjs"
},
"files": [
"api/lib",
"api/package.json",
"client/build",
"server/src",
"server/package.json"
],
"scripts": {
"build": "npm run build -w api -w client",
"dev-client": "npm run dev -w client",
"dev-server": "npm run dev -w server",
"eslint": "eslint .",
"eslint-fix": "npm run eslint --fix",
"prepack": "npm run build",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run eslint && npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium/console-view.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium/console-view/issues"
},
"homepage": "https://github.com/zakodium/console-view#readme",
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-cheminfo": "^7.2.1",
"eslint-config-cheminfo-react": "^8.0.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"rollup": "^2.60.1"
},
"dependencies": {
"fastify": "^3.24.0",
"fastify-static": "^4.5.0",
"fastify-websocket": "^4.0.0",
"got": "^11.8.3",
"open": "^8.4.0"
}
}