-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
69
70
71
{
"name": "motorcortex-clip-starter",
"version": "1.0.0",
"description": "Starter repo for creating Donkey Clips",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/donkeyclip/motorcortex-clip-starter"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "webpack --mode=production --config ./demo/webpack.config.js",
"lint": "eslint -c .eslintrc src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"start": "npm run build & webpack serve --mode=development --config ./demo/webpack.config.js",
"test": "HERE GOES YOUR TEST TASK",
"test:prod": "npm run lint",
"render": "node node_modules/@donkeyclip/video-renderer"
},
"keywords": [
"motorcortex",
"donkeyclip"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@donkeyclip/motorcortex": "9.5.7",
"@donkeyclip/motorcortex-anime": "^3.1.1",
"@donkeyclip/motorcortex-ol": "3.1.0",
"@donkeyclip/motorcortex-svgdraw": "1.2.0",
"html-loader": "3.1.0",
"raw-loader": "4.0.2"
},
"devDependencies": {
"@babel/core": "7.16.10",
"@babel/eslint-parser": "7.16.5",
"@babel/plugin-syntax-jsx": "7.16.7",
"@babel/plugin-transform-react-jsx": "7.16.7",
"@babel/preset-env": "7.16.11",
"@donkeyclip/motorcortex-player": "2.10.8",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@size-limit/preset-big-lib": "6.0.4",
"babel-loader": "8.2.3",
"concurrently": "6.5.1",
"core-js": "3.20.3",
"css-loader": "6.5.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.2.0",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"size-limit": "6.0.4",
"style-loader": "3.3.1",
"webpack": "5.66.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.7.3"
}
}