-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "avendia",
"version": "0.0.0",
"author": "Ziphil",
"description": "",
"homepage": "https://github.com/Ziphil/AvendiaTertia",
"main": "dist/index.js",
"scripts": {
"develop": "webpack --config webpack-main.ts --watch",
"build": "webpack --config webpack-main.ts",
"start": "node dist/index.js",
"lint": "eslint generator/**/*.ts plugin/**/*.ts template/**/*.ts document/**/*.ts",
"lint:fix": "eslint --fix generator/**/*.ts plugin/**/*.ts template/**/*.ts document/**/*.ts"
},
"eslintConfig": {
"extends": "ziphil",
"ignorePatterns": "webpack-*.ts",
"parserOptions": {
"project": [
"tsconfig.json",
"tsconfig-document.json"
],
"sourceType": "module"
},
"rules": {
"@typescript-eslint/quotes": "off",
"no-useless-concat": "off",
"prefer-const": [
"warn",
{
"destructuring": "all"
}
]
}
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/css-tree": "^1.0.7",
"@types/dot": "^1.1.5",
"@types/glob": "^7.2.0",
"@types/howler": "^2.2.7",
"@types/jquery": "^3.5.13",
"@types/parsimmon": "^1.10.6",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/sass": "^1.43.1",
"@types/webpack": "^5.28.0",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-ziphil": "^1.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"raw-loader": "^4.0.2",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.2.2"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"@typescript/lib-dom": "npm:@zenml/xmldom-type",
"@zenml/xmldom": "^1.0.0",
"@zenml/zenml": "^1.2.0",
"@zenml/zotica": "^1.3.0",
"assert": "^2.0.0",
"axios": "^0.27.2",
"basic-ftp": "^4.6.6",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"command-line-args": "^5.2.0",
"css-tree": "^2.0.4",
"dayjs": "^1.10.7",
"dot": "^1.1.3",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"howler": "^2.2.3",
"https-browserify": "^1.0.0",
"jquery": "^3.6.0",
"localforage": "^1.10.0",
"parsimmon": "^1.18.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.48.0",
"source-map-support": "^0.5.21",
"soxsot": "^0.8.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.66.0"
}
}