-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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": "dhbw-web2",
"version": "1.0.0",
"description": "A tool to create a visual representation how accounts are following each other on Instagram.",
"private": true,
"scripts": {
"precli": "webpack --mode=production --node-env=production",
"cli": "node --import tsx ./src/index.ts",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/d3": "^7.4.3",
"@types/node": "^20.11.30",
"@webpack-cli/generators": "^3.0.7",
"css-loader": "^6.7.4",
"css-minimizer-webpack-plugin": "^6.0.0",
"html-inline-css-webpack-plugin": "^1.11.2",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-dev-server": "^4.15.2"
},
"dependencies": {
"@inquirer/prompts": "^4.3.0",
"@material-design-icons/svg": "^0.14.13",
"d3": "^7.9.0",
"hex-to-array-buffer": "^2.0.0",
"tweetnacl-sealedbox-js": "^1.2.0"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts-esm",
"testEnvironment": "node"
}
}