-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "tedgoas",
"version": "1.0.0",
"description": "Ted Goas is a reliable product designer and front-end developer working on websites, applications, and HTML emails.",
"scripts": {
"clean": "rimraf dist",
"eleventy:serve": "cross-env NODE_ENV=development eleventy --serve",
"eleventy:watch": "cross-env NODE_ENV=development eleventy --watch",
"eleventy:build": "cross-env NODE_ENV=production eleventy",
"postcss": "postcss src/assets/css/styles.css -o dist/assets/css/styles.css",
"postcss:watch": "postcss src/assets/css/styles.css -o dist/assets/css/styles.css --watch",
"start": "npm run clean && run-p eleventy:serve postcss:watch",
"serve": "run-s clean postcss eleventy:serve",
"watch": "run-s clean postcss eleventy:watch",
"build": "run-s clean postcss eleventy:build",
"debug": "DEBUG=Eleventy* npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TedGoas/Dante.git"
},
"author": "Ted Goas",
"license": "MIT",
"bugs": {
"url": "https://github.com/TedGoas/Dante/issues"
},
"homepage": "https://github.com/TedGoas/Dante#readme",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@tailwindcss/typography": "^0.3.1",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"luxon": "^1.24.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.1.2",
"terser": "^4.8.0"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"postcss-import": "^14.0.1",
"postcss-nested": "^5.0.5",
"rough-notation": "^0.5.1"
}
}