-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.9 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
{
"name": "dat-degree-show",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"yarn:watch:rollup\" \"nuxt\"",
"prettier": "prettier '**/*.{js,vue,css,md}'",
"eslint": "eslint '**/*.{js,vue}'",
"stylelint": "stylelint '**/*.{vue,css}'",
"lint": "yarn prettier --check && yarn eslint --quiet && yarn stylelint --quiet",
"lint:fix": "yarn prettier --write && yarn eslint --quiet --fix && yarn stylelint --quiet --fix",
"export-data": "node ./scripts/export-data.js",
"watch:rollup": "yarn build:rollup -w",
"build:rollup": "rollup -c",
"build:nuxt": "nuxt generate --fail-on-error",
"build": "yarn export-data && yarn build:rollup && yarn build:nuxt"
},
"dependencies": {
"box-sizing-border-box": "^1.0.1",
"domready": "^1.0.8",
"focus-visible": "^5.1.0",
"lazysizes": "^5.2.0",
"lodash": "^4.17.19",
"normalize.css": "^8.0.1",
"nuxt": "^2.12.2",
"tailwindcss": "^1.4.4"
},
"devDependencies": {
"@actions/core": "^1.2.4",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@nuxtjs/sitemap": "^2.2.1",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.0",
"@saulhardman/nuxt-html-validate": "^0.0.4",
"@saulhardman/nuxt-release": "^0.0.5",
"@saulhardman/nuxt-robotize": "^0.0.4",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cheerio": "^1.0.0-rc.3",
"common-tags": "^1.8.0",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"fs-extra": "^9.0.0",
"inline-style-prefixer": "^6.0.0",
"postcss-calc": "^7.0.1",
"postcss-hover-media-feature": "^0.2.1",
"postcss-pxtorem": "^5.1.1",
"prettier": "1.19.1",
"rollup": "^2.7.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^8.0.1",
"rollup-plugin-output-manifest": "^1.0.2",
"rollup-plugin-terser": "^5.3.0",
"stylelint": "^13.3.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-order": "^4.0.0",
"xmldom": "^0.3.0"
},
"description": "Digital Art & Technology Degree Show 2013",
"main": "index.js",
"repository": "[email protected]:benashman/dat-degree-show.git",
"author": "Saul Hardman <[email protected]>",
"license": "MIT"
}