-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
{
"name": "@vibbioinfocore/react-2d-molecule",
"version": "3.1.0",
"description": "A React component to display molecule structures in a 2D SVG",
"browser": "dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "npm run build:debug && cd example && npm install && npm start",
"build": "esbuild src/index.tsx --bundle --minify --sourcemap --format=esm --outdir=dist --allow-overwrite",
"build:debug": "esbuild src/index.tsx --bundle --sourcemap --format=esm --outdir=dist --allow-overwrite",
"postbuild": "tsc --emitDeclarationOnly",
"check": "tsc --noEmit --skipLibCheck && eslint 'src/**/*.ts' 'src/**/*.tsx'",
"check:formatting": "prettier --check src/**/*.ts src/**/*.tsx"
},
"author": "James Collier",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.5.0",
"@testing-library/react": "^16.0.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"babel-jest": "^29.5.0",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.0.0",
"process": "^0.11.10",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"react": "^18.2.0"
},
"prettier": {
"trailingComma": "all"
}
}