-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.88 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
{
"name": "front-end-starter",
"version": "0.0.1",
"main": "index.js",
"author": "Anton Abilov",
"license": "MIT",
"devDependencies": {
"@ardoq/shared-configs": "0.1.17",
"@babel/core": "7.5.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
"@babel/plugin-proposal-optional-chaining": "7.12.13",
"@babel/plugin-transform-regenerator": "7.4.5",
"@babel/plugin-transform-runtime": "7.12.15",
"@babel/preset-env": "7.12.13",
"@babel/preset-react": "7.12.13",
"@babel/preset-typescript": "7.8.3",
"@babel/runtime": "7.5.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"eslint": "6.8.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-class-members": "^1.11.0",
"prettier": "1.19.1",
"regenerator-runtime": "0.13.5",
"stylelint": "13.2.1",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.0.0",
"terser-webpack-plugin": "2.3.5",
"ts-loader": "6.2.1",
"typescript": "3.8.3",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2"
},
"dependencies": {
"@types/react": "17.0.1",
"@types/react-dom": "16.9.5",
"@types/styled-components": "4.4.2",
"@types/webpack-env": "1.15.1",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-dom": "16.8.6",
"styled-components": "5.0.0"
},
"scripts": {
"build": "webpack --config ./webpack.prod.js --mode production",
"start": "webpack-dev-server",
"stylelint": "stylelint **/*.tsx",
"lint": "eslint --ext .js,.ts,.tsx src/",
"check-types": "tsc -p tsconfig.json"
}
}