-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.53 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
{
"name": "building-lightning-graph",
"version": "1.0.0",
"description": "Building Lightning apps graph visualizer project",
"scripts": {
"postinstall": "concurrently \"npm run install:client\" \"npm run install:server\" \"npm run install:style\"",
"install:client": "cd client; npm install",
"install:server": "cd server; npm install",
"install:style": "cd style; npm install",
"build": "concurrently \"npm run build:client\" \"npm run build:style\"",
"build:client": "cd client; npm run build",
"build:style": "cd style; npm run build",
"watch": "concurrently \"npm run watch:client\" \"npm run watch:server\" \"npm run watch:style\"",
"watch:client": "cd client; npm run watch",
"watch:server": "cd server; npm run watch",
"watch:style": "cd style; npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmancini55/building-lightning-graph.git"
},
"keywords": [],
"author": "Brian Mancini <bmancini@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bmancini55/building-lightning-graph/issues"
},
"homepage": "https://github.com/bmancini55/building-lightning-graph#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"concurrently": "^7.1.0",
"eslint": "^8.12.0",
"npm": "^8.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/node": "^20.2.1"
}
}