-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "enzyme-conf-website",
"version": "1.0.0",
"description": "Jekyll page for Enzyme Conf",
"main": "gulpfile.babel.js",
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.23.7",
"@tailwindcss/typography": "^0.5.13",
"tailwindcss": "^3.4.3",
"autoprefixer": "^10.4.19",
"browser-sync": "^3.0.2",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"cssnano": "^7.0.3",
"gulp": "^5.0.0",
"gulp-postcss": "^10.0.0",
"postcss": "^8.4.39",
"postcss-import": "^16.1.0"
},
"scripts": {
"build:production": "cross-env NODE_ENV=production gulp",
"build:dev": "cross-env NODE_ENV=development gulp",
"build": "npm run build:production",
"dev": "cross-env NODE_ENV=development gulp serve",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/EnzymeAD/enzyme-conf-website.git"
},
"author": "Tim Gymnich",
"license": "MIT",
"bugs": {
"url": "https://github.com/EnzymeAD/enzyme-conf-website/issues"
},
"publishConfig": {
"access": "public"
}
}