-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 KB
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": "data-den",
"version": "1.0.0",
"license": "AGPL",
"scripts": {
"start": "npm run start:core",
"start:core": "nx run data-den-core:start",
"start:angular": "nx run data-den-angular:start",
"start:react": "nx run data-den-react:start",
"start:vue": "nx run data-den-vue:start",
"start:docs": "nx run getdataden.com:start",
"start:all": "nx run-many -t start",
"build": "npm run build:core",
"build:core": "nx build data-den-core",
"build:core-com": "nx build-com data-den-core",
"build:angular": "nx build data-den-angular",
"build:react": "nx build data-den-react",
"build:vue": "nx build data-den-vue",
"build:docs": "nx build getdataden.com",
"build:all": "nx run-many -t build",
"test": "npm run test:core",
"test:core": "nx run data-den-core:test",
"test:angular": "nx run data-den-angular:test",
"test:react": "nx run data-den-react:test",
"test:vue": "nx run data-den-vue:test",
"test:all": "nx run-many -t test"
},
"private": true,
"devDependencies": {
"@nx/js": "16.10.0",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^14.0.0",
"nx": "16.10.0",
"prettier": "^2.8.8",
"prettier-plugin-go-template": "^0.0.13",
"pretty-quick": "^3.1.3"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged && npm run test:all"
}
},
"dependencies": {
"@popperjs/core": "^2.11.8"
}
}