-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.31 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.31 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
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
{
"name": "preact-modern-startupper",
"description": "Minimalistic, high-powered boilerplate",
"version": "3.1.0",
"main": "index.js",
"author": "Marcin Kołodziejczak <kolodziejczak.mn@gmail.com>",
"license": "MIT",
"scripts": {
"generate": "plop",
"check:types": "tsc",
"build:dev": "webpack-dev-server --config-name dev",
"build:prod": "webpack --config-name prod",
"start": "run-s build:dev",
"build": "run-s check:types build:prod",
"lint:scripts": "eslint ./src/**/*.{tsx,ts}",
"lint:styles": "stylelint ./src/**/*.styles.{tsx,ts}",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "run-s check:types lint:scripts lint:styles test"
}
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/preset-env": "^7.9.6",
"@babel/preset-modules": "^0.1.3",
"@babel/preset-typescript": "^7.9.0",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preact": "^5.3.18",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/preact": "^1.0.2",
"@types/jest": "^25.2.1",
"@types/lingui__core": "^2.7.0",
"@types/node": "^13.13.5",
"@types/prop-types": "^15.7.3",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"circular-dependency-plugin": "^5.2.0",
"clean-webpack-plugin": "^3.0.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"inquirer-directory": "^2.2.0",
"jest": "^26.0.1",
"jest-svg-transformer": "^1.0.0",
"npm-run-all": "^4.1.5",
"offline-plugin": "^5.0.7",
"plop": "^2.6.0",
"prerender-spa-plugin": "^3.4.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-docgen-typescript-loader": "^3.7.2",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"typescript": "^3.8.3",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-pwa-manifest": "^4.2.0"
},
"dependencies": {
"@lingui/core": "^2.9.1",
"@preact-hooks/unistore": "^1.1.2",
"goober": "^1.8.0",
"preact": "^10.4.1",
"prop-types": "^15.7.2",
"unistore": "^3.5.1",
"reselect": "^4.0.0",
"preact-router": "^3.2.1",
"wouter-preact": "^2.4.0"
}
}