-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.ejs
More file actions
34 lines (34 loc) · 901 Bytes
/
package.json.ejs
File metadata and controls
34 lines (34 loc) · 901 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
30
31
32
33
34
{
"private": true,
"name": "<%= config.name %>",
"version": "0.0.0",
"type": "module",
"scripts": {
<% if (config.biome) { %>
"lint": "biome check --write",
<% } %>
"dev": "wis dev",
"build": "wis build"
},
<% if (config.biome) { %>
"lint-staged": {
"**/*.{ts,tsx,json}": "biome check --write"
},
<% } %>
"dependencies": {
"@wisdesign/lsicon": "0.0.4",
"@wiscore/router": "<%= packages['@wiscore/router'] %>",
"react": "<%= dependencies['react'] %>",
"react-dom": "<%= dependencies['react-dom'] %>"
},
"devDependencies": {
<% if (config.biome) { %>
"@biomejs/biome": "1.9.4",
<% } %>
"@wisdesign/cli": "<%= packages['@wisdesign/cli'] %>",
"@types/react": "<%= dependencies['@types/react'] %>",
"@types/react-dom": "<%= dependencies['@types/react-dom'] %>",
"husky": "9.0.11",
"lint-staged": "15.2.7"
}
}