-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 871 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
{
"name": "rust-axum-todo-api",
"version": "1.0.0",
"description": "A Rust example of a todo application with axum and sqlx.",
"main": "index.js",
"scripts": {
"format": "prettier --write --ignore-unknown .",
"tailwind:build": "npx tailwindcss -i styles/tailwind.css -o assets/main.css",
"tailwind:watch": "npx tailwindcss -i styles/tailwind.css -o assets/main.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litsynp/rust-axum-todo-api.git"
},
"author": "litsynp",
"license": "ISC",
"bugs": {
"url": "https://github.com/litsynp/rust-axum-todo-api/issues"
},
"homepage": "https://github.com/litsynp/rust-axum-todo-api#readme",
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3"
}
}