-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "anxelin-project-structure",
"version": "1.0.3",
"description": "Create a project structure for an Angular project",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"test": "npm run build && jasmine src/**/*_spec.js",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"keywords": [
"schematics",
"angular",
"changelog",
"commits",
"conventional commits",
"prettier",
"folder structure",
"angular folder structure",
"frontend",
"front-end",
"anxelin"
],
"author": "mikeg96 (https://github.com/MikeG96)",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^11.1.2",
"@angular-devkit/schematics": "^11.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@schematics/angular": "^11.1.2",
"husky": "^4.3.8",
"typescript": "~4.1.2"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "^0.1101.2",
"@types/jasmine": "~3.5.0",
"@types/node": "^12.11.1",
"jasmine": "^3.5.0",
"standard-version": "^9.1.0"
},
"bugs": {
"url": "https://github.com/MikeG96/anxelin-project-structure/issues"
},
"homepage": "https://github.com/MikeG96/anxelin-project-structure/#README"
}