-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 908 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 908 Bytes
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
{
"name": "sendgridapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:tailwind": "npx tailwindcss -i src/styles.css -o public/index.css",
"watch:tailwind": "npx tailwindcss -i src/styles.css -o public/index.css --watch",
"start:server": "nodemon index.js",
"start:prod": "npm run build:tailwind && node index.js",
"start": "npm-run-all -p watch:tailwind start:server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.14",
"express": "^4.18.2",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"postcss-watch": "^0.1.1",
"tailwindcss-inner-border": "^0.2.0"
}
}