-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "excalidraw-animate",
"version": "0.6.1",
"homepage": "./",
"source": "./src/library.ts",
"module": "./dist/library.js",
"types": "./dist/library.d.ts",
"dependencies": {
"@excalidraw/excalidraw": "0.15.2",
"pako": "2.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/dom-mediacapture-record": "^1.0.16",
"@types/pako": "^2.0.0",
"@types/react": "^18.2.4",
"@types/react-dom": "^18.2.3",
"browser-fs-access": "^0.33.1",
"crypto": "^1.0.1",
"jest-canvas-mock": "^2.5.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typescript": "^5.0.4"
},
"files": [
"src",
"dist"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "yarn run test:all",
"test:all": "yarn run test:type && yarn run test:lint && yarn run test:format && yarn run test:app --watchAll=false",
"test:type": "tsc",
"test:lint": "eslint --max-warnings=0 --ext .js,.ts,.tsx --ignore-pattern dist.",
"test:format": "prettier 'src/*.(js|ts|tsx|css|scss)' --list-different",
"test:app": "react-scripts test --passWithNoTests",
"compile": "tsc -p tsconfig.build.json"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(roughjs|points-on-curve|path-data-parser|points-on-path|browser-fs-access)/)"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}