-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.87 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.87 KB
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
{
"name": "@dhis2/cli-app-scripts",
"version": "12.11.1",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dhis2/app-platform",
"directory": "cli"
},
"author": "Austin McGee <austin@dhis2.org>",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./init": "./src/commands/init.js"
},
"files": [
"bin",
"config",
"src"
],
"dependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-flow": "^7.24.7",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1",
"@babel/plugin-transform-optional-chaining": "^7.27.1",
"@babel/plugin-transform-private-methods": "^7.27.1",
"@babel/plugin-transform-private-property-in-object": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.27.1",
"@dhis2/app-shell": "12.11.1",
"@dhis2/cli-helpers-engine": "^3.2.2",
"@jest/core": "^27.0.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@vitejs/plugin-react": "^4.2.1",
"@yarnpkg/lockfile": "^1.1.0",
"archiver": "^7.0.1",
"axios": "^0.25.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.1.0",
"babel-plugin-react-require": "^3.1.3",
"chokidar": "^3.3.0",
"css-loader": "^6.7.1",
"detect-port": "^1.3.0",
"dotenv": "^8.1.0",
"dotenv-expand": "^5.1.0",
"fast-glob": "^3.3.3",
"file-loader": "^6.2.0",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.3.3",
"html-webpack-plugin": "^5.5.0",
"http-proxy": "^1.18.1",
"i18next-conv": "^9",
"i18next-scanner": "^3.3.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "^2.5.3",
"node-http-proxy-json": "^0.1.9",
"parse-author": "^2.0.0",
"parse-gitignore": "^1.0.1",
"react-refresh": "^0.11.0",
"style-loader": "^3.3.1",
"styled-jsx": "^4.0.1",
"terser-webpack-plugin": "^5.3.1",
"vite": "^5.2.9",
"vite-plugin-dynamic-import": "^1.5.0",
"webpack": "^5.41.1",
"workbox-build": "^7.3.0"
},
"bin": {
"d2-app-scripts": "./bin/d2-app-scripts"
},
"scripts": {
"test": "d2-app-scripts test"
},
"jest": {
"testPathIgnorePatterns": [
"src/commands/test.js"
],
"testEnvironment": "node"
},
"devDependencies": {
"outdent": "^0.8.0"
}
}