-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "numl.design",
"description": "An open-source Library of Web Components and a Runtime CSS Framework for rapidly building UI that follows your Design System",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "npm run build-preview && nuxt generate",
"start": "nuxt start",
"generate-pages": "node ./generators/create-pages.js",
"generate": "npm run build-preview && nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js",
"deploy": "rm -rf .cache && npm run generate && rsync -ruv dist/* cloud:/usr/share/nginx/numl.design/",
"build-preview": "parcel build --target browser --out-dir static/preview/ --out-file index.html --public-url . static/preview.html"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/content": "^1.10.0",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/pwa": "3.2.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.13.4",
"serverless-http": "^2.7.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/proxy": "^2.0.1",
"@nuxtjs/sitemap": "^2.4.0",
"@shopify/draggable": "^1.0.0-beta.8",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"clipboard-copy": "^3.1.0",
"codemirror": "^5.58.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lockr": "^0.8.5",
"lz-string": "^1.4.4",
"markdown-toc": "^1.2.0",
"numl": "^1.1.2",
"nuxt": "^2.14.7",
"parcel": "1.12.3",
"prettier": "^2.0.5",
"rehype-parse": "^7.0.1",
"remarkable": "^2.0.1",
"remarkable-emoji": "^0.1.3",
"remarkable-meta": "^1.0.1",
"remarkable-numl": "^0.1.7",
"remove-markdown": "^0.3.0",
"unified": "^9.1.0",
"vue-codemirror": "^4.0.6"
}
}