-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.01 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
{
"name": "@donkeyclip/motorcortex-clip-starter",
"version": "1.0.0",
"description": "Starter repo for creating Donkeyclips",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/donkeyclip/motorcortex-clip-starter"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "webpack --mode=production --config ./server/webpack.config.js",
"lint": "eslint -c .eslintrc --no-error-on-unmatched-pattern ./**/*{.ts,.js}",
"lint:fix": "npm run lint -- --fix",
"start": "npm run build & webpack serve --mode=development --config ./server/webpack.config.js",
"test": "HERE GOES YOUR TEST TASK",
"test:prod": "npm run lint"
},
"keywords": [
"motorcortex",
"donkeyclip",
"motorcortex-clip"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@donkeyclip/motorcortex": "^9.5.6",
"@donkeyclip/motorcortex-player": "2.10.7",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "10.4.13",
"babel-loader": "^9.1.2",
"core-js": "^3.27.1",
"css-minimizer-webpack-plugin": "4.2.2",
"cssnano": "5.1.14",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"html-loader": "4.2.0",
"postcss": "^8.4.21",
"postcss-loader": "7.0.2",
"prettier": "^2.8.3",
"source-map-loader": "^4.0.1",
"webpack": "5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "4.11.1"
},
"dependencies": {
"@donkeyclip/motorcortex-anime": "^3.1.1",
"@donkeyclip/motorcortex-animetitles": "^1.4.0"
}
}