-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "etiketai",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "pretty-quick",
"export": "next export",
"test": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --watch"
},
"dependencies": {
"next": "10.0.3",
"next-plugin-preact": "3.0.3",
"preact": "10.5.7",
"preact-render-to-string": "5.1.12",
"react": "npm:@preact/compat@0.0.3",
"react-dom": "npm:@preact/compat@0.0.3"
},
"devDependencies": {
"babel-jest": "26.6.3",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-preset-minify": "0.5.1",
"husky": "4.3.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"pretty-quick": "3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && git add ."
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}