-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.03 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
{
"name": "NMRiumWrapper",
"version": "1.0.0",
"private": false,
"license": "MIT",
"main": "lib/NMRiumWrapper.js",
"module": "lib/NMRiumWrapper.js",
"files": [
"lib"
],
"volta": {
"node": "20.2.0"
},
"dependencies": {
"@blueprintjs/core": "^5.11.0",
"@blueprintjs/icons": "^5.11.0",
"@emotion/react": "^11.13.0",
"fifo-logger": "^1.0.0",
"filelist-utils": "^1.11.1",
"nmr-load-save": "^0.37.0",
"nmr-processing": "^12.12.0",
"nmrium": "^0.59.0",
"react-science": "^6.0.0",
"vite-plugin-pwa": "^0.20.1"
},
"scripts": {
"start": "vite --host localhost --port 3000 --open",
"serve": "vite --host",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 vite build --outDir 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.esm.json",
"check-types": "tsc --project tsconfig.esm.json",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test-e2e": "playwright test --project chromium",
"test-e2e-server": "serve -l tcp://localhost:3000 build"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@playwright/test": "^1.46.0",
"@simbathesailor/use-what-changed": "^2.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^3.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-cheminfo-react": "^13.0.0",
"eslint-config-cheminfo-typescript": "^15.0.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"serve": "^14.2.3",
"typescript": "^5.5.4",
"vite": "^5.4.0"
}
}