-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 862 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
28
29
30
31
32
33
34
35
36
{
"name": "boilerplate-sdk-react",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run format && rm -rf dist/ && tsc && npm run build:scss",
"build:scss": "sass src/styles/main.scss dist/boilerplate-sdk-react.min.css --style=compressed --no-source-map",
"dev": "tsc --watch",
"format": "prettier --write \"src/**/*.{ts,tsx}\""
},
"keywords": [],
"author": "Datisekai",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.7",
"typescript": "^5.3.3"
},
"dependencies": {
"prettier": "^3.1.1"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 kB"
}
]
}