-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 3.85 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "nsgm-cli",
"version": "2.0.26",
"description": "A CLI tool to run Next/Style-components and Graphql/Mysql fullstack project",
"main": "index.js",
"scripts": {
"help": "node ./lib/index.js",
"dev": "npm run tsbuild && node ./lib/index.js dev",
"tsbuild": "rimraf lib && tsc --build tsconfig.build.json",
"build": "node ./lib/index.js build",
"tsv": "node ./lib/index.js version",
"start": "node ./lib/index.js start",
"export": "node ./lib/index.js export",
"init": "node ./lib/index.js init",
"upgrade": "node ./lib/index.js upgrade",
"create": "node ./lib/index.js create",
"delete": "node ./lib/index.js delete",
"deletedb": "node ./lib/index.js deletedb",
"clean": "rimraf .next && rimraf build && rimraf webapp && rimraf lib",
"lint": "tslint -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release": "npm run clean && npm run lint && npm run format && npm run tsbuild && npm run build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erishen/nsgm.git"
},
"keywords": [
"next",
"style-components",
"graphql",
"mysql",
"redux",
"react",
"hooks",
"express"
],
"author": {
"name": "Erishen Sun",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/erishen/nsgm/issues"
},
"bin": {
"nsgm": "lib/index.js"
},
"files": [
"generation/*",
"client/*",
"server/*",
"pages/*",
"lib/*",
"public/*",
"scripts/*",
"*.config.js",
".babelrc",
"next-env.d.ts"
],
"homepage": "https://github.com/erishen/nsgm#readme",
"dependencies": {
"@reduxjs/toolkit": "2.2.6",
"antd": "5.19.3",
"axios": "1.7.2",
"body-parser": "1.20.2",
"cors": "2.8.5",
"exceljs": "4.4.0",
"express": "4.19.2",
"express-fileupload": "1.5.1",
"express-graphql": "0.12.0",
"file-saver": "2.0.5",
"graphql": "16.9.0",
"lodash": "4.17.21",
"markdown-it": "14.1.0",
"moment": "2.30.1",
"mysql2": "3.11.3",
"next": "14.2.13",
"rc-util": "5.43.0",
"react": "^18",
"react-dom": "^18",
"react-redux": "9.1.2",
"redux": "5.0.1",
"redux-thunk": "3.1.0",
"replace": "1.2.2",
"replace-in-file": "6.3.5",
"shelljs": "0.8.5",
"styled-components": "6.1.12",
"terser-webpack-plugin": "5.3.10",
"uglify-js": "3.19.0",
"uuid": "10.0.0",
"webpack": "5.93.0",
"webpack-simple-progress-plugin": "0.0.5"
},
"devDependencies": {
"@babel/core": "7.24.9",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/body-parser": "1.19.5",
"@types/express": "4.17.21",
"@types/express-fileupload": "1.5.0",
"@types/express-graphql": "0.9.0",
"@types/graphql": "14.5.0",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.7",
"@types/moment": "2.13.0",
"@types/mysql": "2.15.26",
"@types/next": "9.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-redux": "7.1.33",
"@types/shelljs": "0.8.15",
"@types/styled-components": "5.1.34",
"@types/uuid": "10.0.0",
"babel-plugin-react-html-attrs": "3.0.5",
"babel-plugin-styled-components": "2.1.4",
"cross-env": "7.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "^5"
}
}