-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "Binged",
"version": "1.0.0",
"description": "Know the time you spent binge watching on Netflix",
"author": "Shreerang Patwardhan",
"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 .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.8.0",
"@saeris/vue-spinners": "^1.0.8",
"axios-rate-limit": "^1.2.1",
"body-parser": "^1.19.0",
"cross-env": "^5.2.1",
"csv-parser": "^2.3.2",
"express": "^4.17.1",
"fast-csv": "^2.5.0",
"http-delayed-response": "0.0.4",
"multer": "^1.4.2",
"ndjson": "^1.5.0",
"nuxt": "^2.10.2",
"vue-google-charts": "^0.3.2",
"vue-social-sharing": "^2.4.7",
"vue-spinner": "^1.0.3"
},
"devDependencies": {
"@nuxtjs/dotenv": "^1.4.1",
"babel-eslint": "^8.2.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-vue": "^4.0.0",
"nodemon": "^1.19.4",
"prettier": "1.14.3"
}
}