-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
77 lines (77 loc) · 2.56 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
{
"name": "asterics-grid",
"version": "0.1.0",
"description": "Flexible Grid System for the AsTeRICS Framework",
"main": "index.js",
"dependencies": {
"@klues/couch-auth": "^0.20.1",
"cors": "^2.8.5",
"dotenv-flow": "^3.2.0",
"express": "^4.19.2",
"file-saver": "^1.3.8",
"hls.js": "^0.14.14",
"html2canvas": "^1.4.1",
"jspdf": "^2.3.1",
"jszip": "3.8.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.0",
"vue-i18n": "8",
"vue-multiselect": "^2.1.8"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"babel-jest": "^29.5.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.4.0",
"vue-template-compiler": "^2.7.0",
"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-no-live": "webpack-dev-server --liveReload false",
"start-auth": "node superlogin/start.js",
"start-auth-ssl": "node superlogin/start.js ssl",
"build": "jest && webpack --config webpack.config.js --env production",
"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",
"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-Grid.git"
},
"author": "Benjamin Klaus",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/asterics/AsTeRICS-Grid/issues"
},
"homepage": "https://github.com/asterics/AsTeRICS-Grid#readme",
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}