-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
133 lines (133 loc) · 3.54 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
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
130
131
132
133
{
"name": "blackboard",
"version": "0.1.1",
"description": "Draw over webpages, capture and save full page screenshots",
"private": true,
"resolutions": {
"glob-parent": "^6.0.0",
"browserslist": "^4.16.6",
"trim-newlines": "^4.0.1",
"css-what": "^5.0.1"
},
"dependencies": {
"konva": "^8.0.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-konva": "^17.0.2-4",
"styled-components": "^5.3.0",
"uuid": "^8.3.2"
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"build": "INLINE_RUNTIME_CHUNK=false node scripts/build.js",
"test": "node scripts/test.js --env=jsdom",
"watch": "npm-watch"
},
"watch": {
"build": {
"patterns": [
"src",
"public"
],
"extensions": "js,html,scss,css,json,svg"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node",
"mjs"
]
},
"babel": {
"presets": [
"react-app",
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"browserslist": "^4.16.6",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.29.0",
"eslint-config-react-app": "^5.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.0.7",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.1",
"glob-parent": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"npm-watch": "^0.9.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^5.3.0",
"promise": "8.0.1",
"raf": "3.4.1",
"react-dev-utils": "^11.0.4",
"resolve": "^1.17.0",
"style-loader": "^1.2.1",
"trim-newlines": "^4.0.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"whatwg-fetch": "3.2.0"
}
}