-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.6 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
{
"name": "@anynines/react-boilerplate",
"version": "1.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn webpack-dev-server --hot --inline --history-api-fallback --env dev",
"build": "rm -rf public/dist && yarn webpack --env prod",
"lint": "yarn lint:js && yarn lint:css",
"lint:css": "yarn stylelint './src/**/*.tsx'",
"lint:js": "yarn eslint . --ext .ts,.tsx",
"test": "jest --verbose --passWithNoTests",
"test:watch": "jest --watch --verbose --passWithNoTests",
"test:coverage": "jest --verbose --coverage --maxWorkers=4 --passWithNoTests",
"open:coverage": "open ./coverage/lcov-report/index.html"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.4",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.2",
"extract-loader": "^5.0.1",
"file-loader": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^5.0.8",
"hard-source-webpack-plugin": "^0.13.1",
"html-loader": "^0.5.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-styled-components": "^7.0.2",
"jest-svg-transformer": "^1.0.0",
"style-loader": "^1.1.3",
"stylelint": "^13.2.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-order": "^4.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"svg-react-loader": "^0.4.6",
"sw-precache-webpack-plugin": "^1.0.0",
"ts-jest": "^26.4.1",
"ts-loader": "^7.0.5",
"typescript": "^3.8.3",
"url-loader": "^4.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"@anynines/design-system": "^0.1.0",
"react": ">=16",
"react-dom": ">= 16.8.0",
"styled-components": "^5.0.1"
}
}