-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "tilos-client",
"description": "new client to tilos website",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": "12.18.0"
},
"scripts": {
"dev": "sapper dev",
"build": "npx sapper build",
"export": "sapper export",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"lint": "TIMING=1 eslint 'src/**/*.{svelte,js,html}' 'cypress/**/*.js' --fix --ignore-path .gitignore",
"prettier": "prettier --write 'src/**/*.{svelte,js,html}' 'cypress/**/*.js'",
"prettier:check": "prettier --check 'src/**/*.{svelte,js,html}' 'cypress/**/*.js'"
},
"dependencies": {
"compression": "1.7.4",
"date-fns": "2.18.0",
"encoding": "0.1.13",
"howler": "2.2.1",
"polka": "0.5.2",
"sirv": "1.0.11",
"timezone-support": "2.0.2"
},
"devDependencies": {
"@getify/eslint-plugin-proper-arrows": "10.0.0",
"cypress": "6.6.0",
"eslint": "7.21.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-svelte3": "3.1.2",
"husky": "4.3.7",
"lint-staged": "10.5.4",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"prettier-plugin-svelte": "2.1.6",
"sapper": "0.28.10",
"svelte": "3.34.0",
"svelte-loader": "2.13.6",
"webpack": "4.44.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier"
}
}