-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 989 Bytes
/
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
{
"name": "ckd",
"version": "1.0.0",
"description": "Cathering Kwong Design",
"author": "kevin olson <acidjazz@gmail.com>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"production": "yarn generate; node operations/aeonian.js production",
"staging": "yarn generate; node operations/aeonian.js staging",
"test": "echo No tests yet"
},
"dependencies": {
"aeonian": "^1.1.3",
"nuxt": "^2.3.4",
"stylus": "^0.56.0",
"stylus-loader": "^4.3.3",
"vue-in-viewport-directive": "^2.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"eslint": "^8.7.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^8.3.0"
}
}