-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.71 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
{
"name": "atw2",
"version": "1.17.0",
"private": true,
"scripts": {
"build": "vue-cli-service build",
"build:report": "vue-cli-service build --report",
"deploy": "npm run update:dbcache .env.production && npm run build && firebase deploy --only hosting",
"deploy:functions": "firebase deploy --only functions",
"deploy:staging": "npm run build && npm run host:staging",
"emulate": "firebase emulators:start --only functions",
"host:staging": "firebase hosting:channel:deploy staging --expires 30d",
"lint": "vue-cli-service lint src functions vue.config.js",
"postinstall": "husky install",
"start": "vue-cli-service serve",
"start:local": "npm run build && VUE_APP_DATABASE_EMULATOR vue-cli-service serve",
"start:services": "cd ./services/findISBN && npm run start",
"test": "vue-cli-service test:unit",
"test:watch": "npm run test -- --watch",
"update:books:tags": "mkdir -p /tmp/atw/ && firebase database:get /tags/books > /tmp/atw/books.tags.json && firebase database:get /books > /tmp/atw/books.json && node ./migrations/update-books-tags.js",
"update:books:creators": "mkdir -p /tmp/atw/ && firebase database:get /people > /tmp/atw/creators.json && firebase database:get /books > /tmp/atw/books.json && node ./migrations/update-books-creators.js",
"update:images": "mkdir -p /tmp/atw/ && firebase database:get /books > /tmp/atw/books.json && node ./migrations/update-images.js",
"update:dbcache": "node ./migrations/update-dbcache.js",
"import:books": "node ./migrations/import-books.js",
"import:db": "node ./migrations/import-db.js"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@ckeditor/ckeditor5-build-balloon": "^38.0.1",
"@ckeditor/ckeditor5-vue": "^5.1.0",
"@sindresorhus/slugify": "^1.1.2",
"@vueuse/head": "^0.6.0",
"axios": "^0.21.1",
"bulma": "^0.9.3",
"clipboard": "^2.0.8",
"core-js": "^3.15.2",
"cute-animals": "^0.2.3",
"dayjs": "^1.10.6",
"deck": "0.0.4",
"diacritics": "^1.3.0",
"email-validator": "^2.0.4",
"firebase": "^8.8.0",
"firebaseui": "^4.8.1",
"isbn3": "^1.1.13",
"jimp": "^0.16.1",
"json2csv": "^5.0.6",
"lodash": "^4.17.21",
"node-isbn": "^1.6.1",
"uuid": "^8.3.2",
"vue": "^3.3.4",
"vue-router": "^4.0.10",
"vue-tippy": "^6.0.0-alpha.30",
"vuedraggable": "^4.0.3",
"vuex": "^4.0.2",
"webpack": "^4.39.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/vue": "^6.4.2",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^5.0.6",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/compiler-sfc": "^3.1.5",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-raine": "^0.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-fp": "git+https://github.com/raineorshine/eslint-plugin-fp.git#allowedObjects",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-testing-library": "^4.10.1",
"eslint-plugin-vue": "^7.14.0",
"firebase-tools": "^9.16.0",
"husky": "^7.0.1",
"jest-transform-stub": "^2.0.0",
"prettier": "^2.3.2",
"promptly": "^3.2.0",
"sass": "^1.36.0",
"sass-loader": "^10.2.0",
"vue-jest": "^5.0.0-alpha.10",
"vue-next-masonry": "^1.1.3",
"vue-svg-loader": "^0.17.0-beta.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}