-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.32 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
{
"name": "excalidraw-layers",
"version": "1.0.0",
"private": true,
"homepage": "./",
"dependencies": {
"@sentry/browser": "^5.19.0",
"@sentry/integrations": "^5.19.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/jest": "^26.0.3",
"@types/lodash.throttle": "^4.1.6",
"@types/nanoid": "^2.1.0",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/socket.io-client": "^1.4.33",
"browser-nativefs": "^0.9.0",
"customize-cra": "^1.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"i18next-browser-languagedetector": "^5.0.0",
"jest-canvas-mock": "^2.2.0",
"lodash.throttle": "^4.1.1",
"nanoid": "^2.1.11",
"node-sass": "^4.14.1",
"open-color": "^1.7.0",
"pepjs": "^0.5.2",
"points-on-curve": "^0.2.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"roughjs": "^4.3.1",
"socket.io-client": "^2.3.0",
"three": "^0.125.0",
"typescript": "^3.9.6",
"worker-plugin": "^4.0.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired 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 --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test:format": "prettier 'src/*.(js|ts|tsx|css|scss)' --list-different",
"test:app": "react-scripts test --env=jsdom --passWithNoTests --testPathIgnorePatterns=src/excalidraw",
"preinstall": "git submodule update --init --recursive; (cd src/excalidraw; patch -N -p1 < ../../excalidraw.patch); true"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(roughjs|points-on-curve|path-data-parser|points-on-path|browser-nativefs)/)"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}