-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"name": "the-tutorial-place",
"version": "1.0.0",
"description": "A web site gathering development tutorials, written by the community. Every article can be subject to edits through pull requests.",
"keywords": [
"tutorials",
"nuxtjs",
"github",
"community",
"content",
"developers",
"tech"
],
"author": {
"name": "Florent Catiau-Tristant",
"email": "florent.ct@orange.fr"
},
"homepage": "https://github.com/Kapcash/the-tutorial-place#the-tutorial-place",
"repository": "https://github.com/Kapcash/the-tutorial-place",
"license": "GNU GPLv3",
"private": true,
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"generate": "nuxt-ts generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix .",
"test": "jest"
},
"dependencies": {
"@nuxt/content": "^1.8.1",
"@nuxt/typescript-runtime": "^2.0.0",
"@nuxtjs/dayjs": "^1.2.0",
"core-js": "^3.7.0",
"nuxt": "^2.14.5",
"vue-social-sharing": "^3.0.3"
},
"devDependencies": {
"@nuxt/types": "^2.14.5",
"@nuxt/typescript-build": "^2.0.3",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.1",
"@nuxtjs/tailwindcss": "^3.2.0",
"@vue/test-utils": "^1.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.13.0",
"eslint-plugin-nuxt": "^2.0.0",
"jest": "^26.4.2",
"nuxt-typed-vuex": "^0.1.22",
"ts-jest": "^26.3.0",
"vue-class-component": "^7.2.6",
"vue-jest": "^3.0.4",
"vue-property-decorator": "^9.0.2"
}
}