-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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": "nymph-svelte-template",
"version": "1.0.0",
"description": "An app template using Nymph.js, SMUI, and SvelteKit.",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check .",
"prepare": "husky install && npm run lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/nymph-svelte-template.git"
},
"author": "SciActive Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/nymph-svelte-template/issues"
},
"homepage": "https://github.com/sciactive/nymph-svelte-template#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@tsconfig/recommended": "^1.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "2.8.4",
"prettier-plugin-svelte": "^2.9.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1"
}
}