-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "fast.af-website",
"version": "1.0.0",
"description": "Website of the fastest URL shortener in the world! 🚀",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Pitu",
"email": "heyitspitu@gmail.com",
"url": "https://github.com/Pitu"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"upload": "serverless s3sync"
},
"dependencies": {
"@nuxtjs/axios": "^5.4.1",
"dotenv": "^8.0.0",
"nuxt": "^2.7.1",
"spectre.css": "^0.5.8",
"v-clipboard": "^2.2.2"
},
"devDependencies": {
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-aqua": "^5.0.0",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.12.0",
"postcss-css-variables": "^0.12.0",
"postcss-nested": "^4.1.2",
"sass-loader": "^7.1.0",
"serverless-s3-sync": "^1.8.0"
},
"eslintConfig": {
"extends": [
"aqua/vue",
"aqua/node"
],
"rules": {
"vue/attribute-hyphenation": 0,
"quote-props": 0
}
}
}