-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "ioanblog",
"version": "1.0.0",
"description": "ioan's blog",
"author": "Ioan Biticu",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development NUXT_HOST=localhost NUXT_PORT=4192 nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production NUXT_HOST=127.0.0.1 NUXT_PORT=4192 node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/sentry": "^4.0.2",
"@nuxtjs/tailwindcss": "^1.4.1",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"html-to-text": "^5.1.1",
"nuxt": "^2.0.0",
"nuxt-material-design-icons": "^1.0.4",
"prismjs": "^1.20.0",
"vue-client-only": "^2.0.0",
"vue-cookie-law": "^1.13.3",
"vue-prism-component": "^1.2.0"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.6.0",
"@nuxtjs/eslint-config-typescript": "^1.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/google-analytics": "^2.3.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"husky": "^4.0.0",
"jest": "^24.1.0",
"jest-serializer-html": "^7.0.0",
"lint-staged": "^10.0.0",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"sass-loader": "^8.0.2",
"stylelint": "^10.1.0",
"ts-jest": "^25.0.0",
"vue-jest": "^4.0.0-0",
"vue-masonry-css": "^1.0.3",
"wallaby-vue-compiler": "^1.0.6"
},
"wallaby": {
"autoDetect": true
}
}