-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "portfolio",
"version": "1.0.0",
"engines": {
"node": "14.16.0"
},
"description": "Portfolio website.",
"author": "Jordan Kaiser",
"private": true,
"scripts": {
"dev": "nuxt --hostname '0' --port 8000",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"analyze": "nuxt build --analyze",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@nuxtjs/axios": "^5.8.0",
"cross-env": "^5.2.1",
"gsap": "^2.1.3",
"lazysizes": "^5.2.0",
"lodash": "^4.17.15",
"nuxt": "^2.10.2",
"scrollmagic": "^2.0.7"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^10.0.3",
"breakpoint-sass": "^2.7.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"imports-loader": "^0.8.0",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"sass-loader": "^7.3.1",
"script-loader": "^0.7.2",
"typescript": "^3.7.2"
}
}