-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "cdis",
"version": "1.0.0",
"description": "Community driven interactive story",
"author": "tomheller",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest",
"now-build": "npm run generate"
},
"lint-staged": {
"*.{js,vue}": "npm run lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/auth": "^4.9.0",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/eslint-config-typescript": "^1.0.2",
"@nuxtjs/pwa": "^3.0.0-0",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.17",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.3",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"jwks-rsa": "^1.8.0",
"node-fetch": "^2.6.0",
"nuxt": "^2.0.0",
"sanitize-html": "^1.23.0",
"tiptap": "^1.27.1",
"tiptap-extensions": "^1.29.1",
"typescript": "^3.8.3",
"velocity-animate": "^1.5.2"
},
"devDependencies": {
"nodemon": "^1.18.9",
"@nuxtjs/tailwindcss": "^1.0.0",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"stylelint": "^10.1.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"vue-jest": "^4.0.0-0"
}
}