-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.92 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "sample-chat-frontend",
"version": "1.1.0",
"description": "A sample real-time chat built on React",
"private": true,
"engines": {
"npm": ">=6.14.0"
},
"scripts": {
"start": "webpack-dev-server --config config/webpack/config.webpack.development.js",
"start:local": "cross-env DOTENV=.env.local webpack-dev-server --config config/webpack/config.webpack.development.js",
"storybook": "start-storybook",
"build:dev": "webpack --config config/webpack/config.webpack.development.js && es-check es5 './dist/**/*.js'",
"build:prod": "webpack --config config/webpack/config.webpack.production.js && es-check es5 './dist/**/*.js'",
"build:storybook": "build-storybook",
"serve:app": "ws -d dist/ --spa index.html --https",
"serve:storybook": "ws -d storybook-static/ --spa index.html --https",
"test": "jest",
"lint:check": "npm run lint:prettier:check . && npm run lint:tsc:check && npm run lint:eslint:check . && npm run lint:stylelint:check .",
"lint:write": "npm run lint:prettier:write . && npm run lint:eslint:write . && npm run lint:stylelint:write .",
"lint:prettier:check": "prettier --check --ignore-path .gitignore",
"lint:prettier:write": "prettier --write --ignore-path .gitignore",
"lint:tsc:check": "tsc --noEmit",
"lint:eslint:check": "eslint --ext .ts,.tsx --ignore-path .gitignore",
"lint:eslint:write": "eslint --ext .ts,.tsx --ignore-path .gitignore --fix",
"lint:stylelint:check": "stylelint --ignore-path .gitignore",
"lint:stylelint:write": "stylelint --fix --ignore-path .gitignore",
"intl:update-po": "gettext-utils export-strings --default-locale=en-GB && git add src/i18n/*.po*",
"intl:generate-json": "gettext-utils import-strings"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/goooseman/sample-chat-frontend.git"
},
"keywords": [
"react",
"chat",
"socket.io",
"cdd",
"tdd"
],
"author": "goooseman",
"license": "ISC",
"bugs": {
"url": "https://github.com/goooseman/sample-chat-frontend/issues"
},
"homepage": "https://github.com/goooseman/sample-chat-frontend#readme",
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"autoprefixer": "^9.8.0",
"await-lock": "^2.0.1",
"babel-loader": "^8.1.0",
"clsx": "^1.1.1",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"debug-es5": "^4.1.0",
"dotenv-webpack": "^1.8.0",
"es-check": "^5.1.0",
"file-loader": "^6.0.0",
"gettext-utils": "^2.2.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^9.1.1",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^9.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-targem": "^1.7.1",
"react-youtube": "~7.10.0",
"socket.io-client": "^2.3.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"uuid": "^8.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-shell-plugin-next": "^1.1.9"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-a11y": "^5.3.19",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-contexts": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/react": "^5.3.19",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.2.1",
"@testing-library/user-event": "^12.8.1",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/socket.io-client": "^1.4.33",
"@types/uuid": "^8.0.0",
"@types/youtube": "0.0.38",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"canvas": "^2.6.1",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest-dom": "^3.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"local-web-server": "^4.2.1",
"nock": "^12.0.3",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"react-docgen-typescript-loader": "^3.7.2",
"stylelint": "^13.6.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^26.1.0",
"webpack-dev-server": "^3.11.0"
}
}