-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
155 lines (155 loc) · 5.61 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"author": "Christian Florentz ([email protected])",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@react-hook/window-size": "^3.1.1",
"@react-pdf/renderer": "^3.4.5",
"@reduxjs/toolkit": "^1.9.7",
"@vitejs/plugin-react": "^4.3.1",
"@zip.js/zip.js": "^2.7.52",
"ag-grid-community": "^32.2.1",
"ag-grid-react": "^32.2.1",
"body-parser": "^1.20.3",
"bootstrap": "^4.6.2",
"byte-size": "^8.2.1",
"classnames": "^2.5.1",
"cors": "^2.8.5",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.8",
"electron-updater": "^6.3.4",
"express": "^4.21.0",
"express-rate-limit": "^6.11.2",
"file-saver": "^2.0.5",
"helmet": "^7.2.0",
"html2canvas": "^1.4.1",
"immer": "^9.0.21",
"jspdf": "^2.5.2",
"multer": "^1.4.5-lts.1",
"react": "^18.3.1",
"react-bootstrap": "1.6.8",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-json-tree": "^0.19.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.26.2",
"react-splitter-layout": "^4.0.0",
"react-toastify": "^9.1.3",
"source-map-explorer": "^2.5.3",
"unzipper": "^0.12.3",
"uuid": "^9.0.1",
"vite": "^5.4.8",
"vite-plugin-svgr": "^4.2.0"
},
"description": "The unofficial Nord Stage 2/2EX/3 Program viewer tool.",
"devDependencies": {
"@electron/notarize": "^1.2.4",
"@types/jest": "^29.5.13",
"better-docs": "^2.7.3",
"concurrently": "^8.2.2",
"coverage-badge-creator": "^1.0.19",
"cross-env": "^7.0.3",
"electron": "^29.4.6",
"electron-builder": "^24.13.3",
"emitter": "^0.0.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"jsdoc-to-markdown": "^8.0.3",
"markdown-magic": "^2.6.1",
"node-pandoc": "^0.3.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"sass": "^1.79.4",
"showdown": "^2.1.0",
"wait-on": "^7.2.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"xml-js": "^1.6.11"
},
"engines": {
"node": "18.x"
},
"jest": {
"modulePathIgnorePatterns": [
"client"
],
"coverageReporters": [
"json-summary",
"text",
"text-summary"
],
"verbose": true,
"reporters": [
"default",
"./test/test-md-reporter.js"
]
},
"keywords": [
"Nord",
"Stage",
"NS3",
"File"
],
"private": true,
"resolutions": {
"json5": "^1.0.2",
"lodash": "^4.17.21",
"minimatch": "^3.0.5",
"nth-check": "^2.0.1",
"optionator": "0.9.3",
"pug": "^3.0.1",
"semver": "^7.5.2"
},
"license": "MIT",
"homepage": "./",
"name": "ns-file-parser",
"prettier": {},
"repository": {
"type": "git",
"url": "https://github.com/Chris55/ns3-program-viewer.git"
},
"scripts": {
"analyze": "yarn react-build && source-map-explorer 'build/static/js/*.js'",
"build:cra": "NODE_ENV=production && yarn react-build && webpack --config webpack.config.js",
"build": "NODE_ENV=production && vite build && webpack --config webpack.config.js",
"preview": "vite preview",
"build:license": "generate-license-file --input package.json --output third-party-licenses.md --overwrite",
"client:cra": "yarn react-start",
"client": "vite",
"server": "nodemon src/server/server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"dev:electron": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://127.0.0.1:3000 && yarn electron-start\"",
"start": "NODE_ENV=production node build/server.min.js",
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"electron-start": "nodemon --watch ./public/* --exec \"electron ./src/electron/main.js\"",
"electron-build": "DEBUG=electron-notarize:notarytool electron-builder",
"build:x64": "yarn react-build && webpack --config webpack.electron.config.js && yarn electron-build build -mwl --publish never",
"build:arm": "yarn react-build && webpack --config webpack.electron.config.js && yarn electron-build build -l --arm64 --publish never",
"build:electron": "yarn build:x64 && yarn build:arm",
"deploy:x64": "yarn react-build && webpack --config webpack.electron.config.js && yarn electron-build build -mwl --publish=always",
"deploy:arm": "yarn react-build && webpack --config webpack.electron.config.js && yarn electron-build build -l --arm64 --publish=always",
"deploy:electron": "yarn deploy:x64 && yarn deploy:arm",
"doc:lead": "./docs/build-doc.sh lead",
"doc:stage": "./docs/build-doc.sh stage",
"doc": "yarn doc:stage",
"test": "node test/test-builder && jest --coverage && coverage-badge-creator"
},
"version": "1.6.5"
}