-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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": "@bigfan/art",
"version": "1.1.0",
"description": "react renderer for html5 canvas",
"main": "index.js",
"module": "es/index.js",
"repository": {
"type": "git",
"url": "[email protected]:bigfanjs/art.git"
},
"scripts": {
"clean-dist": "rm -rf dist",
"build": "node build/build.js && npm run copypackage",
"watch": "watch -p \"src/**/*.js\" -c \"yarn build\"",
"clean": "rm -rf node_modules/ package-lock.json yarn-error.log yarn.lock dist",
"copypackage": "cp -rf package.json README.md dist"
},
"keywords": [
"react",
"canvas",
"graphics",
"renderer",
"2d",
"html5",
"reconciler"
],
"author": "bigfanjs <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.12.13",
"math2d": "^3.0.0",
"react": "16.13.1",
"react-reconciler": "0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"watch-cli": "^0.2.3"
}
}