-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "canvadraw",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "mkdir -p build",
"build": "browserify src/main.ts -v -p [ tsify --noImplicitAny ] > build/app.bundle.js",
"prewatch": "npm run prebuild",
"watch": "watchify src/main.ts -v -t -p [ tsify --noImplicitAny ] -o build/app.bundle.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "npm run lint -- --fix",
"test": "nyc mocha"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aymanizz/canvadraw.git"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/jsdom": "^16.2.3",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"browserify": "^16.5.1",
"canvas": "^2.6.1",
"chai": "^4.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jsdom": "^16.2.2",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"tsify": "^4.0.1",
"typescript": "^3.9.3",
"watchify": "^3.11.1"
},
"dependencies": {
"konva": "^6.0.0"
}
}