-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 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
{
"name": "NMRiumWrapper",
"version": "1.1.0",
"private": false,
"license": "MIT",
"type": "module",
"exports": "./lib/NMRiumWrapper.js",
"files": [
"lib",
"src"
],
"volta": {
"node": "24.4.0"
},
"dependencies": {
"@blueprintjs/core": "^6.2.1",
"@blueprintjs/icons": "^6.1.0",
"@blueprintjs/select": "^6.0.3",
"@emotion/styled": "^11.14.1",
"@vitejs/plugin-react": "^5.0.2",
"@zakodium/nmrium-core": "^0.1.7",
"@zakodium/nmrium-core-plugins": "^0.1.10",
"fifo-logger": "^2.0.1",
"filelist-utils": "^1.11.3",
"nmr-processing": "^19.1.0",
"nmrium": "^1.3.0",
"openchemlib": "^9.7.0",
"react-science": "^19.1.0"
},
"scripts": {
"start": "vite --host localhost --port 3000 --open",
"serve": "vite --host",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 vite build",
"build-no-minify": "cross-env NO_MINIFY=true npm run build",
"test": "jest --coverage",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"compile": "tsc --project tsconfig.build.json",
"check-types": "tsc --noEmit",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test-e2e": "playwright test --project chromium",
"test-e2e-server": "serve -l tcp://localhost:3000 dist"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@playwright/test": "^1.55.0",
"@simbathesailor/use-what-changed": "^2.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"cross-env": "^10.0.0",
"eslint": "^9.34.0",
"eslint-config-cheminfo-react": "^17.0.1",
"eslint-config-cheminfo-typescript": "^19.0.0",
"jest": "^30.1.3",
"prettier": "3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.8.2",
"serve": "^14.2.4",
"typescript": "^5.9.2",
"vite": "^7.1.4",
"vite-plugin-pwa": "^1.0.3"
}
}