-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "scanning-app",
"version": "0.0.1",
"license": "UNLICENSED",
"private": "true",
"scripts": {
"dev": "concurrently --raw --default-input-target 1 --kill-others 'yarn dev:server' 'yarn dev:svelte'",
"dev:svelte": "vite dev",
"dev:server": "cd mock-server && yarn dev && cd ..",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"rails-build": "yarn build && yarn rails-build:erb",
"rails-build:erb": "yarn node bin/erb-inject.js ruby-injection-config.txt"
},
"devDependencies": {
"@babel/core": "^7.22.6",
"@faker-js/faker": "^8.0.2",
"@poppanator/sveltekit-svg": "^3.0.1",
"@storybook/addon-actions": "^7.0.25",
"@storybook/addon-essentials": "^7.0.25",
"@storybook/addon-links": "^7.0.25",
"@storybook/addon-svelte-csf": "^3.0.3",
"@storybook/svelte": "^7.0.25",
"@svelte-put/noti": "^1.1.0",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.21.0",
"@types/faker": "^6.6.9",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vaxxnz/nzcp": "1.2.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"concurrently": "^8.2.0",
"dayjs": "^1.11.9",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"fuse.js": "^6.6.2",
"normalize-strings": "^1.1.1",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.63.6",
"stampit": "^4.3.2",
"svelte": "^3.59.2",
"svelte-check": "^3.4.4",
"svelte-loader": "^3.1.9",
"svelte-loading-spinners": "^0.3.4",
"svelte-preprocess": "^5.0.4",
"svelte-select": "^5.6.1",
"svelte-simple-modal": "^1.6.1",
"svelte-steps": "^2.4.1",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"visibilityjs": "^2.0.2",
"vite": "^4.3.9"
},
"type": "module",
"packageManager": "[email protected]",
"dependencies": {
"@lilregie/svelte-scanner": "^0.5.0",
"@sentry/sveltekit": "^7.77.0",
"jsqr": "^1.4.0",
"svelte-chartjs": "^3.1.2"
}
}