-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.62 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "create-material-angular-workspace",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nuke": "npm unlink $npm_package_name && rimraf coverage && rimraf dist && rimraf node_modules",
"nuke:lock": "rimraf package-lock.json && npm run nuke",
"relink": "cd dist/packages/cli && npm run nuke && cd ../../.. && npm run readme && nx build cli && cd dist/packages/cli && npm link && cd ../../..",
"delink": "cd dist/packages/cli && npm run nuke && cd ../../..",
"deploy": "npm run readme && nx build cli && cd dist/packages/cli && npm publish && cd ../../..",
"readme": "write-if c -i=README.md -o=packages/cli/README.md",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"dependencies": {
"chalk": "4.1.2",
"ejs": "^3.1.6",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.1",
"@angular-devkit/schematics": "^12.2.1",
"@jscutlery/semver": "2.6.0",
"@nrwl/cli": "12.6.6",
"@nrwl/eslint-plugin-nx": "12.6.6",
"@nrwl/jest": "12.6.6",
"@nrwl/linter": "12.6.6",
"@nrwl/node": "^12.6.6",
"@nrwl/tao": "12.6.6",
"@nrwl/workspace": "12.6.6",
"@types/ejs": "^3.0.7",
"@types/fs-extra": "^9.0.12",
"@types/inquirer": "^7.3.3",
"@types/jest": "26.0.23",
"@types/lodash": "^4.14.172",
"@types/node": "16.4.14",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"@writeifchanged/cli": "^0.2.0",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"inquirer": "8.1.2",
"jest": "26.6.3",
"jest-chain": "^1.1.5",
"jest-extended": "^0.11.5",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "26.5.6",
"ts-node": "~10.2.0",
"tslib": "^2.3.0",
"typescript": "~4.3.5"
}
}