-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 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
41
42
43
44
45
46
47
48
{
"name": "express-nunjucks-tailwind",
"private": true,
"version": "1.0.0",
"description": "A starter project with Express, Nunjucks and TailwindCSS",
"main": "bin/start.js",
"scripts": {
"test": "xo",
"lint": "xo",
"format": "xo --fix",
"prestart": "yarn build",
"start": "node ./bin/start.js",
"predev": "yarn tw",
"dev": "nodemon ./bin/start.js",
"tw": "tailwind build src/styles/app.css -o public/app.css",
"purge": "purgecss -c purgecss.config.js -o ./public",
"build": "yarn tw && yarn purge"
},
"keywords": [
"express",
"nunjucks",
"tailwindcss"
],
"author": "Hugo Di Francesco",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"client-sessions": "^0.8.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"nodemon": "^2.0.12",
"purgecss": "^4.0.3",
"tailwindcss": "^1.9",
"xo": "^0.39.1"
},
"xo": {
"prettier": true,
"space": true,
"rules": {}
},
"nodemonConfig": {
"ext": "js,html"
}
}