-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
executable file
·42 lines (42 loc) · 1.44 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
{
"name": "vanillalist",
"version": "1.0.0",
"description": "A vanilla JS plugin repository",
"license": "Anti-Fascist MIT License",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass/style.scss:public/css/style.css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass/style.scss:public/css/style.css",
"build:eleventy": "eleventy",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map",
"start": "npm run dev",
"dev": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy"
},
"dependencies": {
"@orchidjs/sifter": "^0.9.0",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.17",
"eleventy-plugin-sharp": "^0.1.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0",
"sass": "^1.49.7"
},
"browserslist": [
"> 1%",
"not dead"
],
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@stanzilla/stylelint-config-rational-order": "^0.1.3",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"stylelint": "^14.4.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0"
}
}