-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
121 lines (121 loc) · 3.92 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
{
"name": "react-imvc",
"version": "2.10.26",
"description": "An Isomorphic MVC Framework",
"main": "./index",
"bin": {
"react-imvc": "./bin/scripts.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/Lucifier129/react-imvc",
"scripts": {
"build": "gulp",
"prebuild": "rimraf ./publish",
"test": "node --openssl-legacy-provider mocha-runner",
"publish-imvc": "npm publish ./publish --tag previous",
"prepublish-imvc": "npm run build",
"posttest:coverage": "nyc report",
"pretest:coverage": "rimraf coverage playwright-report .nyc_output",
"test:coverage": "playwright test",
"project:build": "node --openssl-legacy-provider ./project/build",
"project:start": "node --openssl-legacy-provider ./project/start",
"project:preview": "node --openssl-legacy-provider ./project_publish/preview"
},
"repository": {
"type": "git",
"url": "https://github.com/Lucifier129/react-imvc.git"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-do-expressions": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-function-bind": "^7.12.1",
"@babel/plugin-proposal-function-sent": "^7.12.1",
"@babel/plugin-proposal-pipeline-operator": "^7.12.1",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-class-properties": "^7.22.3",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.22.3",
"@babel/plugin-transform-optional-chaining": "^7.22.3",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@babel/runtime": "^7.22.10",
"@types/node": "^10.12.24",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-istanbul": "^6.1.1",
"body-parser": "^1.13.2",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"cookie-parser": "^1.3.5",
"core-js": "3.19.3",
"create-app": "^1.0.0",
"cross-spawn": "^5.1.0",
"debug": "^2.2.0",
"del": "^3.0.0",
"expect": "^1.20.2",
"express": "^4.14.0",
"express-react-views": "^0.10.5",
"fancy-log": "^1.3.3",
"fast-glob": "^3.3.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.0",
"fs-extra": "^11.1.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.0.0",
"gulp-htmlmin": "^5.0.0",
"gulp-imagemin": "^5.0.3",
"gulp-plumber": "^1.2.1",
"gulp-uglify": "^3.0.1",
"helmet": "^3.1.0",
"js-cookie": "^2.1.4",
"memory-fs": "^0.4.1",
"mocha": "^3.0.2",
"morgan": ">=1.9.1",
"node-fetch": "^2.6.1",
"node-notifier": "^8.0.1",
"pkg-dir": "^4.2.0",
"pnp-webpack-plugin": "^1.2.0",
"querystring": "^0.2.0",
"raf": "^3.4.0",
"regenerator-runtime": "^0.13.2",
"relite": "^1.0.6",
"resolve": "^1.10.0",
"serve-favicon": "^2.3.0",
"terser-webpack-plugin": "^1.1.0",
"tslint": "^5.12.1",
"webpack": "^4.23.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-manifest-plugin": "^2.0.4",
"webpack-node-externals": "^3.0.0",
"whatwg-fetch": "^2.0.3",
"yargs": "^8.0.2"
},
"peerDependencies": {
"@babel/runtime": "^7.22.10",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@playwright/test": "^1.20.0",
"nyc": "^15.1.0",
"puppeteer": "5.2.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rimraf": "^2.6.1",
"typescript": "^4.2.3"
}
}