-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.15 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
{
"name": "@gliff-ai/annotate",
"version": "1.0.0",
"description": "gliff.ai ANNOTATE - a user friendly browser interface for annotating multidimensional images for machine learning",
"repository": "git://github.com/gliff-ai/annotate.git",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx vite build -c vite.config.lib.ts && tsc --emitDeclarationOnly --outDir dist && tsc-alias -p tsconfig.json && npm run build:patch",
"watch": "npx --no-install vite build -c vite.config.lib.ts --watch",
"format": "npx --no-install prettier --write src",
"prettier": "npx --no-install prettier -c src",
"lint": "npm run lint:ts && npm run prettier",
"lint:ts": "npx --no-install eslint src",
"serve": "npx vite",
"build:example": "vite build && cp staticwebapp.config.json dist/",
"test": "jest --coverage --passWithNoTests",
"build:patch": "sed -i 's/const generateClassName$1 = createGenerateClassName();/const generateClassName$1 = createGenerateClassName({seed:\"\",disableGlobal:true,productionPrefix:\"jss-annotate-\"});/g' dist/index.es.js",
"test:visual": "npx percy snapshot snapshots.yml",
"test:e2e": "percy exec -- jest -c jest.e2e.config.js --no-colors",
"dev": "vite --host"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@gliff-ai/eslint-config": "^0.2.4",
"@gliff-ai/jest-browserstack-automate": "^6.0.8",
"@gliff-ai/style": "^16.2.0",
"@gliff-ai/upload": "^1.3.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.0",
"@mui/styles": "^5.9.0",
"@mui/system": "^5.9.0",
"@mui/x-data-grid": "^5.13.1",
"@percy/cli": "1.0.0-beta.76",
"@percy/sdk-utils": "1.0.0-beta.76",
"@percy/selenium-webdriver": "1.0.0",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/resize-observer-browser": "^0.1.7",
"@types/selenium-webdriver": "^4.1.1",
"@types/utif": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"prettier": "2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.5",
"tsc-alias": "^1.6.11",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vite-aliases": "^0.9.2",
"vite-plugin-checker": "^0.3.4"
},
"peerDependencies": {
"@gliff-ai/style": "^16.2.0",
"@gliff-ai/upload": "^1.2.8",
"@mui/icons-material": "^5.4.3",
"@mui/material": "^5.4.3",
"@mui/styles": "^5.4.3",
"@mui/system": "^5.4.3",
"@mui/x-data-grid": "^5.12.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "2.74.1"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.18.6",
"@gliff-ai/slpf": "^1.1.7",
"@use-gesture/react": "^10.2.17",
"detect-browser": "^5.3.0",
"react-inlinesvg": "^2.3.0",
"react-router-dom": "^6.3.0",
"simplify-js": "^1.2.4",
"utif": "^3.1.0"
}
}