mirror of
https://github.com/stashapp/stash.git
synced 2025-12-16 20:07:05 +03:00
* [packaging] switch to pnpm * Bump compiler version * Change pnpm store in docker build --------- Co-authored-by: feederbox826 <feederbox826@users.noreply.github.com> Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
22 lines
589 B
JSON
22 lines
589 B
JSON
{
|
|
"name": "react-component",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"author": "WithoutPants",
|
|
"license": "AGPL-3.0",
|
|
"scripts": {
|
|
"compile:ts": "npm run tsc",
|
|
"compile:sass": "npm run sass src/testReact.scss dist/testReact.css",
|
|
"copy:yml": "cpx \"src/testReact.yml\" \"dist\"",
|
|
"compile": "npm run compile:ts && npm run compile:sass",
|
|
"build": "npm run compile && npm run copy:yml"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.31",
|
|
"@types/react-dom": "^18.2.14",
|
|
"cpx": "^1.5.0",
|
|
"sass": "^1.69.4",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|