-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.21 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
{
"name": "jiezi",
"version": "1.0.0",
"description": "*Solve Chinese characters like riddles.*",
"main": "index.js",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@sentry/react": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"hanzi-writer": "^3.0.2",
"jquery": "^3.5.1",
"prettier": "^2.3.2",
"react-content-loader": "^5.1.4",
"react-modal": "^3.12.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/jquery": "^3.5.5",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-modal": "^3.12.0",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"camelcase-keys": "^6.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.23.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"typescript": "^4.2.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.7.3"
},
"scripts": {
"dev:webpack": "webpack --watch --config webpack.dev.js",
"dev:server": "python3 manage.py runserver",
"build": "webpack --config webpack.prod.js",
"migrate": "python3 manage.py migrate",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier -w frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solved-chinese/app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/solved-chinese/app/issues"
},
"homepage": "https://github.com/solved-chinese/app#readme"
}