-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.72 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
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@codaco/architect-classic",
"version": "6.6.1",
"private": true,
"description": "A tool for building Network Canvas interviews.",
"homepage": ".",
"author": "Complex Data Collective <info@networkcanvas.com>",
"repository": {
"type": "git"
},
"main": "dist/main/index.js",
"scripts": {
"dev": "node scripts/dev.mjs",
"build": "electron-vite build",
"preview": "electron-vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:update-snapshots": "vitest run --update",
"pack": "pnpm run build && electron-builder --dir --config electron-builder.config.js",
"dist": "pnpm run build && electron-builder --config electron-builder.config.js",
"dist:mac": "pnpm run build && electron-builder --mac --config electron-builder.config.js",
"dist:linux": "pnpm run build && electron-builder --linux --config electron-builder.config.js",
"dist:win": "pnpm run build && electron-builder --win --config electron-builder.config.js",
"dist:all": "pnpm run build && electron-builder --mac --linux --win --config electron-builder.config.js",
"publish": "pnpm run build && electron-builder --publish always --config electron-builder.config.js",
"generate-icons": "node scripts/generate-app-icons.js",
"bump": "node scripts/bump.js",
"preflight": "oxlint . && vitest run"
},
"dependencies": {
"archiver": "^7.0.1",
"decompress": "^4.2.1",
"electron-log": "^5.4.4",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-json-strings": "7.18.6",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-private-methods": "^7.29.7",
"@babel/plugin-transform-private-property-in-object": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@codaco/ui": "^5.8.6",
"@material-ui/icons": "^4.11.3",
"@testing-library/jest-dom": "^7.0.0",
"@tippyjs/react": "^4.2.6",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"animejs": "^4.4.1",
"autoprefixer": "^10.5.0",
"axios": "^1.16.0",
"chalk": "^4.1.2",
"classnames": "^2.5.1",
"compare-versions": "^3.6.0",
"csvtojson": "^2.0.14",
"electron": "^43.0.0",
"electron-builder": "^26.15.2",
"electron-devtools-installer": "^3.2.1",
"electron-vite": "^6.0.0-beta.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"framer-motion": "^5.5.6",
"fuse.js": "^7.5.0",
"icon-gen": "^1.2.3",
"jsdom": "^30.0.0",
"lodash": "^4.18.1",
"luxon": "^1.28.1",
"postcss": "^8.5.15",
"postcss-preset-env": "^9.6.0",
"prop-types": "^15.8.1",
"protocol-validation": "github:complexdatacollective/protocol-validation#6f5967ffa8ce8b5d3fa411f4c9553565403dfd24",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-flip-toolkit": "^6.6.9",
"react-grid-layout": "^0.16.6",
"react-redux": "^7.2.1",
"react-resizable": "^1.11.1",
"react-router-dom": "~5.2.1",
"react-router-hash-link": "^2.4.3",
"react-select": "^3.2.0",
"react-sortable-hoc": "^2.0.0",
"react-table": "^7.8.0",
"recompose": "^0.30.0",
"redux": "^4.0.5",
"redux-form": "^8.3.10",
"redux-logger": "^2.10.2",
"redux-mock-store": "^1.5.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"reselect": "^3.0.1",
"sass": "^1.102.0",
"scrollparent": "^2.1.0",
"svg2png": "^4.1.1",
"tippy.js": "^6.3.7",
"uuid": "^14.0.0",
"vite": "8.1.4",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=24.0.0"
},
"productName": "Network Canvas Architect"
}