-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@tylertech/forge-cli",
"version": "3.1.0",
"description": "A CLI for managing Tyler Forge™ Web Component projects.",
"repository": {
"type": "git",
"url": "git+https://github.com/tyler-technologies-oss/forge-cli.git"
},
"type": "module",
"bin": {
"forge": "bin/forge.js"
},
"engines": {
"node": ">=20"
},
"exports": {
"package": "./package.json",
"import": "./dist/index.js"
},
"typings": "./dist/index.d.ts",
"author": "Tyler Technologies, Inc.",
"license": "Apache-2.0",
"files": [
"bin",
"config",
"dist"
],
"scripts": {
"prepare": "husky",
"build": "npm run lint && rimraf ./dist && tsc",
"build:watch": "tsc -w",
"lint": "eslint ./src",
"release": "auto shipit"
},
"dependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@tylertech/forge-build-tools": "^3.1.0",
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.2",
"canonical-path": "^1.0.0",
"chalk": "^5.3.0",
"command-line-usage": "^7.0.3",
"css-loader": "^7.1.2",
"css-to-string-loader": "^0.1.3",
"deepmerge": "^4.3.1",
"esbuild": "^0.23.1",
"glob": "^11.0.0",
"html-loader": "^5.1.0",
"inquirer": "^10.2.2",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^5.3.0",
"js-string-escape": "^1.0.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.3",
"karma-html2js-preprocessor": "^1.1.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-jasmine-order-reporter": "^1.1.0",
"karma-scss-preprocessor": "^4.0.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "^5.0.1",
"minimist": "^1.2.8",
"moment": "^2.30.1",
"package-json": "^10.0.1",
"postcss-loader": "^8.1.1",
"sass": "1.77.6",
"sass-loader": "^16.0.1",
"source-map-loader": "^5.0.0",
"strip-ansi": "^7.1.0",
"terser": "^5.32.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"uppercamelcase": "^3.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@auto-it/conventional-commits": "^11.2.1",
"@auto-it/first-time-contributor": "^11.2.1",
"@auto-it/npm": "^11.2.1",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@tylertech-eslint/eslint-plugin": "^2.1.0",
"@types/browser-sync": "2.29.0",
"@types/command-line-usage": "^5.0.4",
"@types/deepmerge": "^2.2.0",
"@types/inquirer": "9.0.7",
"@types/karma": "^6.3.8",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@types/webpack": "^5.28.5",
"auto": "^11.2.1",
"commitlint": "^19.4.1",
"eslint-plugin-import": "^2.30.0",
"husky": "^9.1.5",
"typescript": "~5.4.5"
}
}