-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) · 6.43 KB
/
package.json
File metadata and controls
172 lines (172 loc) · 6.43 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "reactccompiler",
"version": "1.0.0",
"homepage": "https://github.com/FeathBow/ReactCCompiler#readme",
"description": "ReactCCompiler is a C-like compiler implemented in a high-level programming language, featuring lexical analysis, syntax analysis, intermediate code generation, and target code generation, with support for arrays and function call compilation.",
"main": "index.js",
"scripts": {
"lint": "npm run lint-eslint && npm run lint-stylelint",
"lint-eslint": "eslint -c .eslintrc.js --ext .ts,.tsx,.js src",
"lint-stylelint": "stylelint --config .stylelintrc.js src/**/*.{less,css,scss}",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky install",
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./scripts/config/webpack.development.js",
"build": "cross-env NODE_ENV=production webpack --config ./scripts/config/webpack.production.js",
"docs": "typedoc",
"test": "jest",
"predeploy": "npm run build",
"deploy": "node deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FeathBow/ReactCCompiler.git"
},
"keywords": [],
"author": {
"name": "FeathBow",
"url": "https://github.com/FeathBow"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/FeathBow/ReactCCompiler/issues"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-flow": "^7.24.1",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@svgr/cli": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.24",
"@types/webpack-env": "^1.18.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"conventional-changelog-cli": "^4.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^48.2.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^51.0.1",
"file-loader": "^6.2.0",
"gh-pages": "^6.2.0",
"glob": "^10.5.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.5.2",
"postcss": "^8.5.14",
"postcss-loader": "^8.1.1",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"purgecss-webpack-plugin": "^5.0.0",
"sass": "^1.99.0",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"terser-webpack-plugin": "^5.4.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.12",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.3",
"url-loader": "^4.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --config commitlint.config.js -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --config .eslintrc.js"
],
"*.{css,less,scss}": [
"stylelint --config .stylelintrc.js"
],
"*.{ts,tsx,js,json,html,yml,css,less,scss,md}": [
"prettier --write"
]
},
"browserslist": [
">0.2%",
"not dead",
"ie >= 9",
"last 2 versions",
"not op_mini all"
],
"dependencies": {
"@babel/runtime-corejs3": "^7.27.0",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mantine/core": "^7.7.1",
"@mantine/hooks": "^7.7.1",
"@testing-library/user-event": "^14.5.2",
"@types/react-syntax-highlighter": "^15.5.11",
"axios": "^1.16.0",
"bootstrap": "^5.3.3",
"braces": "^3.0.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-minimizer-webpack-plugin": "^8.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"framer-motion": "^11.0.25",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.5.4",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-data-table-component": "^7.6.2",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-native-logs": "^5.1.0",
"react-router-dom": "^6.30.4",
"react-syntax-highlighter": "^16.1.0",
"styled-components": "^6.1.8",
"sweetalert2": "^11.22.4",
"typedoc-material-theme": "^1.0.2",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-merge": "^5.10.0",
"webpackbar": "^6.0.1",
"terser-webpack-plugin": "^5.4.0"
}
}