-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
{
"name": "swipestats.io",
"version": "1.0.0",
"description": "Visualize your dating data",
"author": "Kristian Elset Bø",
"private": true,
"scripts": {
"start:dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start:db": "mongod --dbpath ./server/data",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"test": "jest",
"heroku-postbuild": "yarn build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/google-analytics": "^2.2.2",
"@nuxtjs/pwa": "^3.0.0-0",
"@nuxtjs/sentry": "^3.0.1",
"@nuxtjs/toast": "^3.2.1",
"@sentry/browser": "^5.10.2",
"@sentry/integrations": "^5.10.2",
"body-parser": "^1.19.0",
"chart.js": "^2.8.0",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"filepond": "^4.7.2",
"filepond-plugin-file-validate-type": "^1.2.4",
"got": "^10.2.0",
"ky": "^0.15.0",
"ky-universal": "^0.3.0",
"logrocket": "^1.0.6",
"md5": "^2.2.1",
"mongoose": "^5.7.5",
"multer": "^1.4.2",
"nuxt": "^2.0.0",
"nuxt-logrocket": "^1.2.7",
"shortid": "^2.2.15",
"vue-chartjs": "^3.4.2",
"vue-filepond": "^5.1.3"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"dotenv": "^8.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.1.0",
"node-sass": "^4.12.0",
"nodemon": "^1.18.9",
"nuxt-purgecss": "^0.2.1",
"nuxt-webfontloader": "^1.1.0",
"prettier": "^1.16.4",
"sass-loader": "^8.0.0",
"tailwindcss": "^1.1.2",
"vue-jest": "^4.0.0-0"
}
}