-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@igorissen/angular-env-builder",
"version": "1.0.0",
"builders": "builders.json",
"scripts": {
"build": "npm run prebuild && tsc && npm run postbuild",
"postbuild": "cpy --flat src/schema.json dist",
"prebuild": "rimraf dist",
"test": "vitest"
},
"files": [
"dist",
"builders.json"
],
"engines": {
"node": "20.16.0"
},
"keywords": [
"angular",
"builder",
"generator",
"environment",
"env"
],
"author": "Ismael Gorissen <[email protected]>",
"license": "MIT",
"description": "Builder to generate \"src/environments/environment.ts\" file based on your environment variables",
"dependencies": {
"@angular-devkit/architect": "~0.1801.4",
"@angular-devkit/core": "~18.1.4"
},
"devDependencies": {
"@eslint/js": "~9.8.0",
"@stylistic/eslint-plugin": "~2.6.1",
"@types/node": "~20.14.15",
"cpy-cli": "~5.0.0",
"eslint": "~9.8.0",
"eslint-plugin-simple-import-sort": "~12.1.1",
"globals": "~15.9.0",
"rimraf": "~6.0.1",
"typescript": "~5.5.4",
"typescript-eslint": "~8.0.1",
"vitest": "~2.0.5"
},
"peerDependencies": {
"dotenv": "~16.4.5"
}
}