-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 KB
/
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
37
38
39
{
"name": "boilerplate",
"version": "0.0.0",
"description": "Opinionated Vite boilerplate",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview --open",
"test": "vite --mode test",
"deploy": "vite build && ghp build --a .github -f -b production -m 'Deploy to production'",
"deploy:staging": "vite build --mode staging && ghp build -a .github -f -b staging -m 'Deploy to staging'",
"postversion": "git push && git push --tags && npm run deploy"
},
"author": "Arnaud Juracek",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tooooools/boilerplate.git"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"ghp": "^1.7.0",
"sass": "^1.59.3",
"stylelint": "^15.3.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.5.0",
"vite": "^4.2.1"
},
"dependencies": {
"@tooooools/ui": "^0.1.0"
}
}