-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.72 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
{
"name": "durham.djangocon.us",
"version": "1.0.0",
"description": "DjangoCon.us conference website built on 11ty",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"watch": "concurrently -c auto npm:css:watch npm:11ty:watch",
"serve": "concurrently -c auto npm:css:watch npm:11ty:serve",
"build": "npm run css:build && npm run 11ty:build",
"debug": "cross-env DEBUG=Eleventy* npm run build",
"clean": "node ./scripts/cleanDist.js",
"11ty:watch": "cross-env NODE_ENV=development eleventy --watch --incremental",
"11ty:serve": "cross-env NODE_ENV=development eleventy --serve --incremental",
"11ty:build": "cross-env NODE_ENV=production eleventy",
"css:watch": "postcss src/assets/css/main.css -o dist/assets/css/main.css --watch",
"css:build": "NODE_ENV=production postcss src/assets/css/main.css -o dist/assets/css/main.css"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/djangocon/durham.djangocon.us.git"
},
"keywords": [
"django",
"djangocon",
"conference"
],
"author": "DEFNA",
"bugs": {
"url": "https://github.com/djangocon/durham.djangocon.us/issues"
},
"homepage": "https://github.com/djangocon/durham.djangocon.us#README",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cssnano": "^6.1.0",
"gray-matter": "^4.0.3",
"markdown-it": "^14.0.0",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.1",
"tailwindcss": "^3.4.1",
"yaml": "^2.4.1"
}
}