This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.37 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
{
"name": "2020-react",
"version": "1.0.0",
"description": "TheFlyingCoder's 2020 React framework",
"author": "Thomas Rowe",
"license": "MIT",
"main": "index.tsx",
"repository": {
"type": "git",
"url": "https://github.com/TheRealFlyingCoder/2020-React.git"
},
"keywords": [
"React",
"Framework",
"SPA",
"Typescript",
"Storybook",
"Emotion.js",
"2020 React"
],
"engines": {
"node": ">=12.0.0",
"npm": "NPM is not for you, Yarn is the way",
"yarn": ">=1.22.0"
},
"scripts": {
"build": "yarn build:client && yarn build:server",
"build:client": "webpack --env production",
"build:server": "webpack --env server",
"check-types": "tsc",
"lint": "yarn run lint:scripts && yarn run lint:styles",
"lint:styles": "stylelint src/**/*.styles.ts --config .stylelintrc.js --fix",
"lint:scripts": "eslint src/**/*.ts[x] --fix",
"scaffold": "yarn run scaffold:component",
"scaffold:component": "ts-node ./tools/scaffold-component.ts",
"scaffold:route": "ts-node ./tools/scaffold-route.ts",
"serve": "yarn build && yarn start:server",
"start": "webpack-dev-server --env development",
"start:server": "node ./dist/server.js",
"storybook": "start-storybook -p 6006",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@storybook/react": "^5.1.11",
"@types/html-webpack-plugin": "^3.2.2",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.7",
"@types/puppeteer": "^2.0.1",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-helmet": "^5.0.9",
"@types/react-router-dom": "^5.1.3",
"@types/react-test-renderer": "^16.9.2",
"@types/webpack": "^4.41.7",
"@types/webpack-dev-server": "^3.10.1",
"@types/webpack-manifest-plugin": "^2.1.0",
"@types/webpack-node-externals": "^2.5.0",
"@types/workbox-webpack-plugin": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"chalk": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-emotion": "^10.0.14",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.5.1",
"esm": "^3.2.25",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.0.5",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-emotion": "^10.0.27",
"path": "^0.12.7",
"prettier": "^1.18.2",
"react-test-renderer": "^16.13.0",
"source-map-loader": "^0.2.4",
"stylelint": "^13.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-node-externals": "^2.5.1",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^5.0.0"
},
"dependencies": {
"@emotion/core": "^10.0.17",
"core-js": "^3.6.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.0.1",
"regenerator-runtime": "^0.13.3"
}
}