-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
72 lines (72 loc) · 2.2 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
{
"name": "alt-gpt",
"version": "0.1.0",
"author": "Feedox",
"main": "index.js",
"license": "AGPL-3.0",
"scripts": {
"build": "node node_modules/frame.libx.js/build/webBundler.js --src=\"src\" --minify",
"start": "node node_modules/frame.libx.js/build/webBundler.js --src='src' --watch --serve",
"serve": "node build.js --serve",
"serve:log": "yarn start >> log.txt",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura --coverageReporters=html",
"debug": "node --inspect build.js --watch --serve"
},
"dependencies": {
"@babel/preset-react": "^7.17.12",
"@types/jest": "^28.1.1",
"@types/node": "^18.0.0",
"@types/systemjs": "^6.1.1",
"axios": "^0.27.2",
"babel-preset-es2015": "^7.0.0-beta.3",
"babel-preset-stage-0": "^7.0.0-beta.3",
"buefy": "^0.9.21",
"bulma": "^0.9.4",
"bulma-toast": "^2.4.1",
"bulma-tooltip": "^3.0.2",
"frame.libx.js": "^0.4.1",
"hotkeys-js": "^3.10.1",
"libx.js": "^2.35.2",
"lottie-web": "^5.9.4",
"moment": "^2.29.3",
"node-sass": "^7.0.1",
"openai": "^3.2.1",
"pug": "^3.0.2",
"sanitize-html": "^2.7.0",
"showdown": "^2.1.0",
"systemjs": "^6.12.1",
"terminal.css": "^0.7.2",
"typescript": "^4.7.3",
"vue": "2.7.10",
"vue-router": "^3.5.4",
"vue-sanitize": "^0.2.2",
"vue-template-compiler": "2.7.10"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/plugin-proposal-pipeline-operator": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.5",
"@vue/runtime-dom": "latest",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^28.1.1",
"jest-junit": "^13.2.0",
"jest-junit-reporter": "^1.1.0",
"ts-jest": "^28.0.5"
},
"jest": {
"coverageReporters": [
"cobertura",
"html"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "build/test_reports",
"output": "./.tmp/test/TEST-RESULTS.xml",
"classNameTemplate": "{classname} - {title}",
"titleTemplate": "{classname} - {title}",
"ancestorSeparator": " > ",
"usePathForSuiteName": "true"
}
}