-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) Β· 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) Β· 1.54 KB
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
{
"name": "pear.dev-www",
"scripts": {
"postinstall": "npx simple-git-hooks",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . ",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest tests --config jest.config.json",
"test:coverage": "jest --coverage tests",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@sveltejs/adapter-auto": "1.0.0-next.72",
"@sveltejs/kit": "1.0.0-next.480",
"@testing-library/jest-dom": "^5.14.0",
"@testing-library/svelte": "^3.0.0",
"@types/jest": "^27.4.1",
"@types/testing-library__jest-dom": "^5.14.0",
"autoprefixer": "^10.4.7",
"babel-jest": "^27.0.0",
"cross-env": "^7.0.3",
"devmoji": "^2.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"jest": "^27.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"sass": "^1.49.9",
"simple-git-hooks": "^2.8.0",
"svelte": "^3.44.0",
"svelte-jester": "^2.0.1",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.3",
"the-new-css-reset": "^1.5.1",
"ts-jest": "^27.0.0",
"typescript": "^4.6.2",
"vite": "^3.0.4"
},
"simple-git-hooks": {
"prepare-commit-msg": "pnpm exec devmoji -e --lint",
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"prettier --write",
"eslint"
]
},
"type": "module"
}