-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "boardy",
"version": "1.0.0",
"description": "responsive, persist, reactive drawing tools on web browser",
"main": "src/index.ts",
"scripts": {
"<< COMMENT_1 >>": "example=[example name(dirname)] yarn start",
"<< COMMENT_2 >>": "ex) example=simple yarn start",
"start": "NODE_ENV=development webpack-dev-server",
"<< COMMENT_3 >>": "example=[example name(dirname)] yarn build:example",
"<< COMMENT_4 >>": "ex) example=simple yarn build:example",
"build:example": "NODE_ENV=example webpack",
"build": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/load0ne/boardy.git"
},
"keywords": [
"board",
"drawing",
"drawing tool",
"responsive",
"vector based",
"stateful",
"context",
"canvas",
"persist"
],
"author": "load0ne",
"license": "MIT",
"bugs": {
"url": "https://github.com/load0ne/boardy/issues"
},
"homepage": "https://github.com/load0ne/boardy#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-loader": "^8.1.0",
"eslint": "^7.4.0",
"eslint-config-google": "^0.14.0",
"html-webpack-plugin": "^4.3.0",
"typescript": "^3.9.6",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}