-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"private": true,
"name": "irregular-apocalypse",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && yarn -s watch || yarn -s watch",
"build": "NODE_ENV=production preact build",
"watch": "preact watch",
"lint": "eslint '{cypress,src}/**/*.{ts,tsx}'",
"format": "prettier --write '{cypress,src}/**/*.{js,jsx,ts,tsx,json,css,md}'",
"pretest": "yarn lint",
"test": "yarn jest && start-server-and-test start http://localhost:8080 cypress:run",
"jest": "jest",
"jest:watch": "jest --watch",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{cypress,src}/**/*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"{cypress,src}/**/*.{js,json,css,md}": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"testURL": "http://localhost",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file.js",
"\\.(css)$": "identity-obj-proxy"
}
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.1.2",
"@fullhuman/postcss-purgecss": "^2.1.0",
"@pacote/eslint-config": "^2.0.0",
"@pacote/eslint-config-jest": "^1.0.3",
"@pacote/eslint-config-react": "^1.0.3",
"@testing-library/dom": "^7.1.1",
"@testing-library/preact": "1.0.2",
"@types/jest": "^25.1.4",
"@types/ramda": "^0.27.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"autoprefixer": "^9.7.5",
"cssnano": "4.1.10",
"cypress": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-standard": "4.0.1",
"fast-check": "^1.21.0",
"husky": "^4.0.3",
"identity-obj-proxy": "3.0.0",
"if-env": "1.0.4",
"jest": "^25.1.0",
"lint-staged": "^10.0.9",
"postcss-loader": "3.0.0",
"preact-cli": "^3.0.0-rc.7",
"preact-cli-plugin-netlify": "1.5.0",
"preact-render-to-string": "^5.1.3",
"prettier": "^2.0.2",
"start-server-and-test": "^1.10.11",
"ts-jest": "^25.2.1",
"ts-loader": "^7.0.2",
"typescript": "^3.7.4"
},
"dependencies": {
"@pacote/computus": "^1.2.1",
"date-fns": "^2.9.0",
"localforage": "1.7.3",
"preact": "^10.1.1",
"preact-helmet": "4.0.0-alpha-3",
"preact-router": "^3.2.1",
"ramda": "^0.27.0",
"tailwindcss": "^1.2.0"
}
}