forked from daybrush/scena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "react-scenejs-editor",
"version": "0.1.0",
"description": "new project",
"main": "./dist/editor.cjs.js",
"module": "./dist/editor.esm.js",
"sideEffects": false,
"types": "declaration/index.d.ts",
"scripts": {
"start": "react-scripts start",
"build": "rollup -c && npm run declaration && print-sizes ./dist",
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json",
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"prerelease": "npm run build && prerelease --dirs=dist,doc",
"release": "npm run build && npm run doc && release --dirs=dist,doc",
"release:init": "npm run build && release -i --dirs=dist,doc"
},
"repository": {
"type": "git",
"url": "git https://github.com/daybrush/scena.git"
},
"author": "Daybrush",
"license": "MIT",
"bugs": {
"url": "https://github.com/daybrush/scena/issues"
},
"homepage": "https://github.com/daybrush/scena#readme",
"dependencies": {
"@daybrush/utils": "^0.10.0",
"@scenejs/effects": "^0.1.0",
"@scenejs/timeline": "^0.1.7",
"@types/node": "12.0.7",
"@types/react": "16.8.19",
"@types/react-color": "^3.0.1",
"@types/react-dom": "16.8.4",
"keycon": "^0.3.0",
"react-color": "^2.17.3",
"react-css-styler": "^0.1.1",
"react-pure-props": "^0.1.1",
"react-scenejs-timeline": "^0.1.9",
"scenejs": "^1.0.3",
"shape-svg": "^0.3.3"
},
"devDependencies": {
"@daybrush/builder": "^0.1.1",
"@daybrush/jsdoc": "^0.3.7",
"@daybrush/release": "^0.2.4",
"daybrush-jsdoc-template": "^1.6.0",
"print-sizes": "0.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"tslint": "^5.17.0",
"typescript": "^3.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}