-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
48 lines (48 loc) · 1.59 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
40
41
42
43
44
45
46
47
48
{
"name": "solvable-sheep-game",
"private": false,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:diy": "vite --config diy/diy.vite.config.ts",
"build": "tsc && vite build",
"build:diy": "tsc && vite build --config diy/diy.vite.config.ts",
"preview": "vite preview",
"prepare": "husky install",
"release:first": "standard-version -- --first-release",
"release": "standard-version --commit-all"
},
"dependencies": {
"classnames": "^2.3.2",
"clipboard": "^2.0.11",
"hydrogen-js-sdk": "^2.3.10",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"standard-version": "^9.5.0",
"stylelint": "^14.11.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"license": "SEE LICENSE IN LICENSE.md"
}