forked from cdnjs/static-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cdnjs.dev",
"version": "1.0.0",
"description": "The new cdnjs website, using Vue & Nuxt",
"private": true,
"main": "index.js",
"engines": {
"node": "12.16.2"
},
"scripts": {
"dev": "NODE_ENV=dev SITE_HOST=http://localhost:3000/ nuxt",
"dev:analyze": "NODE_ENV=production SITE_HOST=http://localhost:3000/ nuxt build --analyze",
"build": "NODE_ENV=production nuxt build",
"start": "NODE_ENV=production node server/app.js",
"test": "npm run test:eslint && npm run test:scss",
"test:fix": "npm run test:eslint:fix && npm run test:scss:fix",
"test:eslint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test:eslint:fix": "npm run test:eslint -- --fix",
"test:scss": "sass-lint '!(node_modules|.nuxt|dist)/**/*.scss' --verbose --no-exit --config .sasslintrc",
"test:scss:fix": "sass-lint-auto-fix '!(node_modules|.nuxt|dist)/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdnjs/static-website.git"
},
"author": "cdnjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdnjs/static-website/issues"
},
"homepage": "https://github.com/cdnjs/static-website#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/sentry": "^4.3.5",
"@nuxtjs/svg": "^0.1.12",
"@sentry/node": "^5.24.2",
"algoliasearch": "^4.5.1",
"babel-polyfill": "^6.26.0",
"chunk": "0.0.3",
"consola": "^2.15.0",
"copyfiles": "^2.3.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"fontmin": "^0.9.8",
"glob-to-regexp": "^0.4.1",
"imagemin": "^7.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"instantsearch.css": "^7.4.5",
"markdown-it": "^11.0.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"nuxt": "^2.14.5",
"prismjs": "^1.21.0",
"semver-sort": "0.0.4",
"sitemap": "^6.3.0",
"spdx-license-ids": "^3.0.6",
"thenby": "^1.3.4",
"tlite": "^0.1.9",
"typeface-ubuntu": "0.0.65",
"url-parse": "^1.4.7",
"vue": "^2.6.12",
"vue-client-only": "^2.0.0",
"vue-clipboard2": "^0.3.1",
"vue-gravatar": "^1.3.1",
"vue-hot-reload-api": "^2.3.4",
"vue-instantsearch": "^3.2.0",
"vue-prism-component": "^1.2.0",
"vue-router": "^3.4.3",
"vue-select": "^3.10.8"
},
"devDependencies": {
"@babel/runtime-corejs3": "^7.11.2",
"@nuxtjs/eslint-config": "^3.1.0",
"@sentry/cli": "^1.57.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"eslint": "^7.9.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"sass-lint": "^1.13.1",
"sass-lint-auto-fix": "^0.21.2",
"sass-loader": "^10.0.2",
"vue-eslint-parser": "^7.1.0"
}
}