-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.91 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
{
"name": "d2-tools",
"version": "0.3.0",
"main": "src/index.ts",
"description": "DHIS2 tools",
"scripts": {
"build:dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"lint": "eslint src/{data,domain,scripts,types,utils} --ext .ts",
"service": "nodemon",
"start": "node dist/index.js",
"start:dev": "ts-node src/index.ts",
"test": "yarn test-unit",
"test-unit": "vitest run --reporter=basic",
"test-unit-watch": "vitest watch",
"prettify": "prettier \"./**/*.{js,jsx,json,css,ts,tsx}\" --write",
"release": "standard-version"
},
"author": "EyeSeeTea <arnau@eyeseetea.com>",
"license": "MIT",
"dependencies": {
"@eyeseetea/d2-api": "1.16.0",
"@types/json-diff": "^0.7.0",
"async-parallel": "^1.2.3",
"cmd-ts": "^0.10.0",
"csv-reader": "^1.0.8",
"csv-writer": "^1.6.0",
"d2-utilizr": "^0.2.16",
"file-system-cache": "^2.0.0",
"json-diff": "^0.7.3",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"luxon": "3.4.2",
"nodemailer": "^6.7.5",
"psqlformat": "^1.21.0",
"purify-ts": "2.0.1",
"random-seed": "^0.3.0",
"simple-node-logger": "^21.8.12",
"socks-proxy-agent": "^8.0.3",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/har-format": "^1.2.13",
"@types/jsonfile": "^6.1.1",
"@types/lodash": "^4.14.180",
"@types/luxon": "3.3.2",
"@types/node": "^17.0.21",
"@types/nodemailer": "^6.4.4",
"@types/random-seed": "^0.3.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"core-js": "2.6.9",
"dotenv": "^16.0.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"fake-indexeddb": "4.0.2",
"flow-remove-types": "2.182.0",
"jsdom": "^22.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.0",
"react-html-parser-ultimate": "^1.0.7",
"ts-loader": "^9.2.8",
"ts-mockito": "^2.6.1",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.2",
"vite": "^4.2.0",
"vite-bundle-visualizer": "^0.6.0",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-node-stdlib-browser": "^0.2.1",
"vite-tsconfig-paths": "4.0.0",
"vitest": "^0.32.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}