-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 858 Bytes
/
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
{
"name": "nicks-notes",
"version": "1.0.0",
"main": "gulpfile.babel.js",
"devDependencies": {
"autoprefixer": "^9.8.6",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"browser-sync": "^2.27.10",
"cross-env": "^7.0.0",
"cross-spawn": "^7.0.3",
"cssnano": "5.1.14",
"gulp": "4.0.2",
"gulp-postcss": "^9.0.0",
"postcss-import": "12.0.1",
"tailwindcss": "^1.8.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/nbelzer/wiki.git"
},
"license": "MIT",
"dependencies": {
"@tailwindcss/ui": "^0.6.0"
}
}