-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "timesheet",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "per-env",
"start:production": "npm run -s serve",
"start:development": "npm run -s dev",
"build": "preact build",
"serve": "preact build && serve build --single",
"dev": "preact watch",
"lint": "eslint src",
"test": "jest"
},
"eslintConfig": {
"extends": "eslint-config-synacor",
"rules": {
"indent": "off",
"prefer-arrow-callback": 0,
"quotes": 0,
"semi": 0,
"no-console": 0,
"brace-style": 0,
"no-case-declarations": 0,
"no-lonely-if": 0,
"quote-props": 0,
"object-shorthand": 0,
"comma-dangle": 0,
"react/jsx-indent-props": 0,
"react/jsx-closing-bracket-location": 0
}
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"dotenv-safe": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.10.0",
"enzyme-adapter-preact-pure": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-synacor": "^3.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-preset-preact": "^1.0.0",
"per-env": "^1.0.2",
"preact-cli": "^3.0.0-rc.10",
"preact-cli-plugin-env-vars": "^1.2.1",
"preact-cli-tailwind": "^1.0.0",
"preact-render-spy": "^1.2.1",
"serve": "^11.1.0"
},
"dependencies": {
"dayjs": "^1.8.23",
"preact": "^10.0.1",
"preact-render-to-string": "^5.1.0",
"preact-router": "^3.0.0",
"tailwindcss": "^1.1.4",
"window-or-global": "^1.0.1"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/browserMocks.js",
"<rootDir>/tests/__mocks__/setupTests.js"
]
}
}