-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "sentry-test-project-public",
"version": "0.0.20",
"description": "My Sentry test project",
"author": "Rafał Chłodnicki",
"private": true,
"license": "MIT",
"scripts": {
"dev": "DOTENV=development node --inspect=9229 ./node_modules/nuxt/bin/nuxt.js dev",
"dev:sym": "DOTENV=development node --preserve-symlinks ./node_modules/nuxt/bin/nuxt.js dev",
"dev:inspect": "DOTENV=development node --inspect-brk=9229 ./node_modules/nuxt/bin/nuxt.js dev",
"build": "DOTENV=development nuxt build",
"start": "DOTENV=development node --inspect=9229 ./node_modules/nuxt/bin/nuxt.js start",
"generate": "nuxt generate",
"analyze": "DOTENV=production nuxt build --analyze"
},
"dependencies": {
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/proxy": "^2.0.0",
"@nuxtjs/sentry": "^4.0.3",
"connect-query": "^1.0.0",
"cookie-parser": "^1.4.5",
"cookie-universal-nuxt": "^2.1.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"is-https": "^2.0.2",
"nuxt-helmet": "^1.2.3",
"nuxt-start": "^2.12.0",
"serve-static": "^1.14.1"
},
"devDependencies": {
"@mapbox/stylelint-processor-arbitrary-tags": "^0.3.0",
"@nuxt/types": "^0.7.7",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.3",
"@types/stylelint-webpack-plugin": "^2.0.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.4",
"eslint": "^7.1.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"node-sass": "^4.13.1",
"nuxt": "^2.12.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.2.1",
"stylelint-scss": "^3.16.0",
"stylelint-webpack-plugin": "^2.0.0",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.{js,vue}": [
"eslint"
],
"*.{scss,vue}": [
"stylelint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}