-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 956 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
37
38
39
{
"name": "competency-framework",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"prettier:diff": "prettier --check src",
"generate:competencies": "node ./helpers/competencyApi.js --compact"
},
"dependencies": {
"axios": "^1.3.3",
"js-base64": "^3.7.2",
"sass": "^1.54.0",
"svelte": "^4.2.8",
"svelte-spa-router": "^4.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte-check": "^3.6.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.8"
},
"prettier": {
"trailingComma": "es5",
"useTabs": false,
"tabWidth": 2,
"singleQuote": true,
"semi": false,
"printWidth": 90
}
}