-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "pixel-drawing-board",
"version": "0.0.4",
"description": "A Canvas based pixel drawing board",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"start": "webpack serve",
"build": "webpack",
"lint": "eslint src/**/*.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zchengsite/pixel-drawing-board.git"
},
"keywords": [
"javascript",
"pixel-drawing-board",
"canvas"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zchengsite/pixel-drawing-board/issues"
},
"homepage": "https://github.com/zchengsite/pixel-drawing-board#readme",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.5.0",
"node-sass": "^5.0.0",
"postcss-loader": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^11.0.0",
"stream-browserify": "^3.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"clipboard": "^2.0.8"
}
}