-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 959 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 959 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
{
"name": "hesabfun",
"version": "1.0.0",
"scripts": {
"dev": "SUPPRESS_NO_CONFIG_WARNING=false rollup -c -w",
"build": "npm run build:tailwind && SUPPRESS_NO_CONFIG_WARNING=false rollup -c",
"start": "sirv public --single",
"watch:tailwind": "postcss tailwindcss/tailwind.css -o public/index.css -w",
"build:tailwind": "NODE_ENV=production postcss tailwindcss/tailwind.css -o public/index.css"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "^7.0.0",
"@sveltech/routify": "^1.9.9",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"postcss-import": "^12.0.1",
"rollup": "^1.20.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.25.1",
"tailwindcss": "^1.8.10"
},
"dependencies": {
"sirv-cli": "^0.4.6"
}
}