-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.86 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.86 KB
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
{
"name": "asterics-aac",
"version": "0.1.0",
"description": "Free, easy-to-use AAC app with offline support, flexible input options, media & smart home access",
"main": "index.js",
"dependencies": {
"@klues/couch-auth": "^0.20.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv-flow": "^3.2.0",
"express": "^4.20.0",
"file-saver": "^1.3.8",
"hls.js": "^0.14.14",
"html-to-image": "^1.11.13",
"interactjs": "^1.10.27",
"jspdf": "^2.3.1",
"jszip": "3.8.0",
"matrix-encrypt-attachment": "^1.0.3",
"matrix-js-sdk": "^36.2.0",
"morgan": "^1.9.1",
"n-ary-huffman": "^4.0.0",
"navigo": "7.1.2",
"pouchdb": "^8.0.1",
"predictionary": "^1.6.0",
"superlogin-client": "^0.8.0",
"vue": "^2.7.15",
"vue-i18n": "8",
"vue-multiselect": "^2.1.8"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-env": "^7.28.5",
"babel-jest": "^29.5.0",
"babel-loader": "^10.0.0",
"core-js": "^3.46.0",
"css-loader": "^6.7.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"nano": "^9.0.3",
"prettier": "^2.8.4",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
},
"scripts": {
"start": "webpack-dev-server",
"start-auth": "node superlogin/start.js",
"start-auth-ssl": "node superlogin/start.js ssl",
"build": "jest && webpack --config webpack.config.js --env production && node scripts/getServiceWorkerCachePaths.js",
"release": "cp scripts/release.sh scripts/release.tmp.sh && sh scripts/release.tmp.sh && rm scripts/release.tmp.sh",
"release-latest": "cp scripts/releaseLatest.sh scripts/releaseLatest.tmp.sh && sh scripts/releaseLatest.tmp.sh && rm scripts/releaseLatest.tmp.sh",
"release-beta": "sh scripts/releaseBeta.sh",
"test": "jest",
"stats": "webpack --config webpack.config.js --env.production --env.nolog --profile --json > stats.json && webpack-bundle-analyzer stats.json app/build",
"stats-dev": "webpack --config webpack.config.js --env.nolog --profile --json > stats.json && webpack-bundle-analyzer stats.json app/build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asterics/Asterics-AAC.git"
},
"author": "Benjamin Klaus",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/asterics/Asterics-AAC/issues"
},
"homepage": "https://github.com/asterics/Asterics-AAC#readme",
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}