-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.89 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
{
"name": "read",
"version": "1.0.0",
"description": "A highly scalable react boilerplate",
"main": "index.js",
"keywords": [
"react",
"typescript",
"atomic-design",
"ddd",
"spa",
"atomic-design-example",
"ddd-example",
"boilerplate",
"react-boilerplate"
],
"repository": {
"type": "git",
"url": "https://github.com/logustra/read"
},
"bugs": "https://github.com/logustra/read/issues",
"author": "Faizal Andyka Putra",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --config build/webpack.development --progress",
"build": "yarn clean:dist && NODE_ENV=production webpack --config build/webpack.production --progress",
"clean:dist": "rimraf dist",
"start": "yarn build && node server",
"stylelint": "stylelint --config stylelint.config.js 'src/**/*.tsx'",
"stylelint:fix": "stylelint --config stylelint.config.js --fix 'src/**/*.tsx'",
"linter": "eslint -c .eslintrc.js --ext .js,.jsx,.ts,.tsx, src",
"linter:fix": "eslint -c .eslintrc.js --fix --ext .js,.jsx,.ts,.tsx, src",
"lint": "yarn stylelint && yarn linter",
"lint:fix": "yarn stylelint:fix && yarn linter:fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@ant-design/icons": "^4.1.0",
"@apollo/react-hooks": "^3.1.5",
"@babel/core": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^4.4.2",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"antd": "^4.2.0",
"apollo-boost": "^0.4.7",
"autoprefixer": "^9.7.6",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"babel-plugin-macros": "^2.8.0",
"camelcase": "^6.0.0",
"chalk": "^4.0.0",
"commander": "^4.0.1",
"commitizen": "^4.0.3",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^3.1.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"graphql": "^15.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"less": "2.7.3",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "^0.9.0",
"nprogress": "^0.2.0",
"polished": "^3.5.1",
"postcss-loader": "^3.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"resource-hints-webpack-plugin": "^0.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"shelljs": "^0.8.3",
"style-loader": "^1.1.3",
"styled-components": "^5.0.0",
"stylelint": "^13.3.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-rscss": "^0.4.0",
"tailwind.macro": "^1.0.0-alpha.10",
"tailwindcss": "^1.4.0",
"terser-webpack-plugin": "^2.3.2",
"typescript": "^3.8.2",
"use-reducer-logger": "^1.0.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"express": "^4.16.3",
"helmet": "^3.22.0",
"iltorb": "^2.4.4",
"node-zopfli-es": "^1.0.4",
"shrink-ray-current": "^4.0.0"
}
}