-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.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
{
"name": "@ngxs/cli",
"version": "3.0.0",
"license": "MIT",
"main": "./lib/index.js",
"typings": "./lib/index.d",
"author": "Maxim Ivanov",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs/cli.git"
},
"keywords": [
"ngxs",
"cli",
"angular",
"state-management"
],
"scripts": {
"tsc": "tsc",
"prepublishOnly": "tsc -p tsconfig.json && cp -R src/plop-helpers lib/src/plop-helpers",
"plop": "plop",
"ts-node": "ts-node",
"node-plop": "node-plop",
"// - APPS": "Run Apps in dev and with packaged modules",
"start": "ts-node index",
"// - TESTING": "Test all modules",
"test": "ts-mocha --paths -p ./tsconfig.json tests/*.spec.ts",
"// - UTILS": "Utility Scripts",
"lint": "tslint --exclude 'node_modules/**/*.ts' -c tslint.json '**/*.ts'",
"format": "prettier --write '**/*.{ts,js}'"
},
"bin": {
"ngxs": "./bin/ngxs.js"
},
"sideEffects": true,
"dependencies": {
"colors": "1.4.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"inquirer-directory": "^2.1.0",
"node-plop": "0.23.0",
"plop": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.2",
"@commitlint/config-conventional": "18.4.2",
"@types/expect": "24.3.0",
"@types/mocha": "10.0.4",
"@types/node": "20.9.2",
"chai": "4.3.10",
"expect": "29.7.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"mocha": "10.1.0",
"rimraf": "5.0.5",
"ts-mocha": "10.0.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"tslib": "2.6.2",
"tslint": "6.1.3",
"typescript": "4.9.5"
}
}