-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "una-scultura",
"description": "Based on stefanfrede/11st-starter-kit",
"version": "1.0.0",
"engines": {
"node": "12.x.x",
"npm": "6.x.x"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:JarkaP/unascultura.git"
},
"author": {
"name": "",
"email": ""
},
"license": "MIT",
"private": true,
"browserslist": [
"defaults",
"maintained node versions",
"> 5%"
],
"scripts": {
"clean": "rimraf build",
"serve": "serve --no-clipboard --listen 8080 dist",
"dev": "npm-run-all -s clean dev:*",
"dev:snowpack": "snowpack dev",
"build": "npm-run-all -s clean build:*",
"build:snowpack": "snowpack build",
"setup": "npm install && npm run validate"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@snowpack/plugin-build-script": "^2.0.11",
"@snowpack/plugin-optimize": "^0.2.9",
"@snowpack/plugin-postcss": "^1.0.7",
"@snowpack/plugin-run-script": "^2.2.0",
"autoprefixer": "^10.0.2",
"babel-eslint": "^10.1.0",
"browserslist": "^4.14.7",
"core-js": "^3.7.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"nanoid": "^3.1.18",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.9",
"postcss-100vh-fix": "^1.0.2",
"postcss-cli": "^8.3.0",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"snowpack": "^2.17.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "^1.9.6"
}
}