forked from mazipan-quran-offline/baca-quran.id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.7 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
{
"name": "quran-offline",
"version": "1.0.0",
"description": "📖 Read Qur'an Directly from Your Web Browser. No Ads, No Analytics, It's Totally Free.",
"author": "Irfan Maulana",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt-ts",
"build": "cross-env NODE_ENV=production nuxt-ts build",
"start": "cross-env NODE_ENV=production nuxt-ts",
"generate": "nuxt-ts build && nuxt-ts export",
"generate:ci": "cross-env DEBUG=nuxt:* yarn generate",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .eslintignore .",
"lint:report": "eslint --ext .js,.ts,.vue --ignore-path .eslintignore . --fix -f html-extended -o eslint-report.html",
"lint:fix": "eslint --ext .js,.ts,.vue --ignore-path .eslintignore . --fix",
"test": "cross-env NODE_ENV=test jest",
"test:coverage": "cross-env NODE_ENV=test jest --coverage"
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.4.10",
"intersection-observer": "^0.11.0",
"nuxt": "2.13.2",
"nuxt-property-decorator": "^2.7.2",
"simple-ampify": "^1.1.0",
"vue-carousel": "^0.18.0",
"vue-ionicons": "3.0.5"
},
"devDependencies": {
"@babel/core": "7.10.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-jsx": "7.10.1",
"@babel/plugin-transform-runtime": "7.10.3",
"@babel/plugin-transform-typescript": "7.10.3",
"@babel/preset-env": "7.10.3",
"@babel/preset-typescript": "7.10.1",
"@nuxt/typescript-build": "^1.0.3",
"@nuxtjs/eslint-config-typescript": "^2.0.0",
"@nuxtjs/pwa": "3.0.0-beta.20",
"@nuxtjs/sitemap": "2.4.0",
"@types/jest": "26.0.3",
"@types/node": "^14.0.14",
"@vue/test-utils": "1.0.3",
"app-root-dir": "^1.0.2",
"autoprefixer": "9.8.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.1.0",
"babel-plugin-dynamic-import-node-babel-7": "2.0.7",
"cp-file": "^9.0.0",
"cross-env": "7.0.2",
"css-loader": "3.6.0",
"eslint": "7.3.1",
"eslint-loader": "^4.0.2",
"express": "4.17.1",
"husky": "4.2.5",
"jest": "26.1.0",
"jest-serializer-vue": "2.0.2",
"less-loader": "6.1.3",
"lint-staged": "^10.2.11",
"node-sass": "4.14.1",
"sass-loader": "8.0.2",
"style-loader": "1.2.1",
"ts-jest": "26.1.1",
"ts-loader": "^7.0.5",
"ts-node": "8.10.2",
"typescript": "3.9.5",
"vue-class-component": "7.2.3",
"vue-i18n": "8.18.2",
"vue-jest": "3.0.5",
"vue-loader": "15.9.3",
"vue-property-decorator": "9.0.0",
"vuex-class": "0.3.2"
},
"lint-staged": {
"*.{vue,ts,js}": [
"npm run lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
}
}