This repository was archived by the owner on Dec 12, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.12 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.12 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "excalidraw",
"version": "0.6.3",
"main": "dist/excalidraw.min.js",
"files": [
"dist"
],
"description": "Excalidraw exported as a component to directly embed in your projects",
"license": "MIT",
"keywords": [
"excalidraw",
"excalidraw-embed",
"react",
"npm",
"npm excalidraw"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all",
"not safari < 12",
"not kaios <= 2.5",
"not edge < 79",
"not chrome < 70",
"not and_uc < 13",
"not samsung < 10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"browser-nativefs": "0.10.1",
"i18next-browser-languagedetector": "5.0.0",
"lodash.throttle": "4.1.1",
"nanoid": "2.1.11",
"open-color": "1.7.0",
"points-on-curve": "0.2.0",
"pwacompat": "2.0.15",
"roughjs": "4.3.1",
"socket.io-client": "2.3.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-arrow-functions": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.8.3",
"@babel/plugin-transform-typescript": "7.9.4",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@sentry/browser": "5.20.1",
"@sentry/integrations": "5.20.1",
"@testing-library/jest-dom": "5.11.1",
"@testing-library/react": "10.4.7",
"@types/jest": "26.0.7",
"@types/lodash.throttle": "4.1.6",
"@types/nanoid": "2.1.0",
"@types/react": "16.9.43",
"@types/react-dom": "16.9.8",
"@types/socket.io-client": "1.4.33",
"asar": "3.0.3",
"babel-loader": "8.1.0",
"babel-plugin-transform-class-properties": "6.24.1",
"css-loader": "3.5.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"file-loader": "6.0.0",
"husky": "4.2.5",
"jest-canvas-mock": "2.2.0",
"lint-staged": "10.2.11",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "4.14.1",
"pepjs": "0.5.2",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-scripts": "3.4.1",
"rewire": "5.0.0",
"sass-loader": "8.0.2",
"terser-webpack-plugin": "2.3.5",
"ts-loader": "7.0.0",
"typescript": "3.9.7",
"webpack": "4.42.0",
"webpack-cli": "3.3.11"
},
"bugs": "https://github.com/excalidraw/excalidraw-embed/issues",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(roughjs|points-on-curve|path-data-parser|points-on-path|browser-nativefs)/)"
]
},
"repository": "https://github.com/excalidraw/excalidraw-embed",
"scripts": {
"build-node": "node ./scripts/build-node.js",
"build:app": "REACT_APP_INCLUDE_GTAG=true REACT_APP_GIT_SHA=$NOW_GITHUB_COMMIT_SHA react-scripts build",
"build:zip": "node ./scripts/build-version.js",
"build": "npm run build:app && npm run build:zip",
"eject": "react-scripts eject",
"fix:code": "npm run test:code -- --fix",
"fix:other": "npm run prettier -- --write",
"fix": "npm run fix:other && npm run fix:code",
"locales-coverage": "node scripts/build-locales-coverage.js",
"prettier": "prettier \"**/*.{css,scss,json,md,html,yml}\" --ignore-path=.eslintignore",
"start": "react-scripts start",
"test:all": "npm run test:typecheck && npm run test:code && npm run test:other && npm run test:app -- --watchAll=false",
"test:app": "react-scripts test --env=jsdom-fourteen --passWithNoTests",
"test:code": "eslint --max-warnings=0 --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"test:other": "npm run prettier -- --list-different",
"test:typecheck": "tsc",
"test": "npm run test:app",
"test:update": "npm run test:app -- --updateSnapshot --watchAll=false",
"build:umd": "NODE_ENV=production webpack --config webpack.prod.config.js"
}
}