forked from Pintree-io/pintree
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
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
{
"name": "pintree",
"version": "1.0.0",
"description": "[English](README.md) | [中文](README.zh.md)",
"main": "index.js",
"scripts": {
"build:css": "tailwindcss build ./css/styles.css -o ./css/tailwind.css",
"watch:css": "nodemon -e html,css,js -x \"npm run build:css\"",
"dev": "concurrently \"npm run watch:css\" \"npm run generate-env\" \"npm run serve\"",
"serve": "http-server -a 127.0.0.1 -p 8080",
"generate-env": "node js/generate-env.js",
"build": "npm run generate-env && npm run build:css",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/forms": "^0.5.10",
"tailwindcss": "^3.4.17",
"theme-change": "^2.5.0",
"vercel": "^37.14.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"commitlint-config-gitmoji": "^2.3.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.7",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"nodemon": "^3.1.9"
}
}