-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "file-atlas",
"version": "1.0.0",
"type": "module",
"main": "dist/main.bundle.js",
"scripts": {
"start": "electron .",
"dev": "npm run build && electron .",
"build": "webpack --config webpack.config.js",
"test": "jest --config jest.config.cjs",
"test:simple": "jest --config jest.config.cjs tests/simple-test.cjs",
"test:watch": "jest --config jest.config.cjs --watch",
"test:coverage": "jest --config jest.config.cjs --coverage",
"test:mind-map": "jest --config jest.config.cjs tests/mindMap.test.cjs",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"d3": "^7.8.5",
"electron": "^28.0.0",
"joi": "^17.9.2",
"uuid": "^9.0.1",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.0.0",
"babel-loader": "^9.1.3",
"electron-rebuild": "^3.2.9",
"eslint": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-resolve": "^29.7.0",
"jsdom": "^26.0.0",
"prettier": "^3.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
}
}