-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "ngrx-vis",
"version": "0.1.24",
"keywords": [
"ngrx",
"angular",
"vis.js",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/co-IT/ngrx-vis"
},
"engines": {
"node": ">=12.4.0",
"npm": ">=6.0.0"
},
"license": "GPL-3.0-or-later",
"bin": {
"ngrx-vis": "./index.js"
},
"scripts": {
"build": "tsc && cp ./package.json ./README.md ./dist/ && cp -r ./src/web-view/template ./dist/web-view",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"start": "ts-node ./src/index.ts",
"start:watch": "nodemon",
"ngrx-vis": "ngrx-vis"
},
"dependencies": {
"commander": "5.0.0",
"fs-extra": "9.0.0",
"ts-morph": "7.0.0",
"typescript": "3.8.3"
},
"devDependencies": {
"@types/fs-extra": "8.1.0",
"@types/node": "13.9.2",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"all-contributors-cli": "^6.14.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"ts-node": "8.7.0"
}
}