-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
100 lines (100 loc) · 3.12 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
{
"name": "@complat/react-spectra-editor",
"version": "1.3.4",
"description": "An editor to View and Edit Chemical Spectra data (NMR, IR, MS, CV, UIVIS, XRD, GC, and DSC).",
"repository": {
"type": "git",
"url": "https://github.com/ComPlat/react-spectra-editor"
},
"license": "AGPL-3.0",
"dependencies": {
"@complat/react-svg-file-zoom-pan": "1.1.4",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.9",
"@mui/styles": "^5.14.9",
"@popperjs/core": "^2.11.8",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.34",
"@types/react-dom": "^18.0.11",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"browserslist": "^4.21.5",
"classnames": "^2.3.2",
"d3": "^7.8.5",
"d3-tip": "^0.9.1",
"jcampconverter": "4.1.0",
"ml-savitzky-golay-generalized": "1.1.1",
"prop-types": "^15.8.1",
"react-dropzone": "^8.0.3",
"react-quill": "^2.0.0",
"react-redux": "^7.2.0",
"redux": "^4.1.1",
"redux-saga": "^1.1.3",
"redux-undo": "^1.1.0",
"regenerator-transform": "^0.13.3",
"reselect": "^4.0.0",
"typescript": "^5.0.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"compile": "rm -rf dist && NODE_ENV=production babel --ignore tests,stories ./src --out-dir ./dist",
"test": "react-scripts test --env=jsdom --verbose --testPathIgnorePatterns=./src/__tests__/fixtures/",
"test:coverage": "CI=true react-scripts test --env=jsdom --verbose --testPathIgnorePatterns=./src/__tests__/fixtures/ --coverage",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 3001 -c .storybook",
"buildbook": "build-storybook -c .storybook -o .out",
"e2e": "cypress open"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@storybook/react": "7.0.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "12.1.5",
"@types/enzyme": "^3.10.13",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"babel-loader": "8.2.5",
"cypress": "^13.6.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.1",
"react-select": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4"
},
"main": "dist/app.js",
"module": "dist/app.js",
"files": [
"dist",
"README.md"
],
"browserslist": [
"defaults and supports es6-module"
],
"publishConfig": {
"access": "public"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!d3|d3-array|internmap|delaunator|robust-predicates)"
]
}
}