-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 KB
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
70
71
72
73
{
"name": "pollygot.app",
"version": "1.0.0",
"description": "Pollygot App",
"author": "kiwicopple",
"private": true,
"scripts": {
"dev": "concurrently \"nuxt\" \"nodemon ./server\"",
"server": "nodemon ./server",
"build": "API_URL=https://app.pollygot.com nuxt build",
"compile:common": "babel ./lib/common --presets stage-3 --plugins transform-es2015-modules-commonjs --out-dir ./server/common",
"db:init": "node ./data/init.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"loc": "cloc --vcs=git --exclude-ext=json .",
"precommit": "npm run lint",
"start": "nuxt start",
"pretty": "prettier --write \"./**/*.{js,json,yml,md,vue,css,scss}\""
},
"dependencies": {
"@nuxtjs/auth": "^4.5.1",
"@nuxtjs/axios": "^5.3.1",
"@nuxtjs/dotenv": "^1.1.1",
"@nuxtjs/proxy": "^1.2.4",
"@nuxtjs/toast": "^3.0.1",
"@sentry/node": "^4.1.1",
"aws-sdk": "^2.309.0",
"body-parser": "^1.18.3",
"bulma": "^0.7.1",
"bulma-extensions": "^2.2.2",
"cookie-parser": "^1.4.3",
"crypto-js": "^3.1.9-1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"flat": "^4.1.0",
"flatpickr": "^4.5.2",
"json2csv": "^4.2.1",
"jsonwebtoken": "^8.3.0",
"lowdb": "^1.0.0",
"moment": "^2.22.2",
"nuxt": "^1.0.0",
"perfect-scrollbar": "^1.4.0",
"shortid": "^2.2.13",
"vue-click-outside": "^1.0.7",
"vue-infinite-loading": "^2.3.3",
"vuedraggable": "^2.16.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-preset-stage-3": "^6.24.1",
"cloc": "^2.3.4",
"concurrently": "^4.0.1",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"husky": "^1.1.2",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"node-sass": "^4.9.3",
"nodemon": "^1.18.4",
"nuxt-sass-resources-loader": "^2.0.4",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"sass-loader": "^7.1.0",
"vue-style-loader": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}