-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.26 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
{
"$schema": "http://json.schemastore.org/package",
"name": "wmfnext-remote-1",
"version": "0.0.0",
"private": true,
"author": "Patrick Lafrance",
"license": "Apache-2.0",
"repository": "https://github.com/patricklafrance/wmfnext-remote-1.git",
"type": "module",
"engines": {
"node": ">=19"
},
"scripts": {
"prebuild": "yarn clean",
"build": "webpack --config webpack.prod.js",
"build-local": "cross-env LOCAL=true webpack --config webpack.prod.js",
"clean": "run-p --continue-on-error delete-dist delete-ts-cache",
"dev": "webpack serve --config webpack.dev.js",
"dev-local": "cross-env LOCAL=true webpack serve --config webpack.dev.js",
"delete-dist": "rimraf dist",
"delete-node-modules": "rimraf node_modules",
"delete-ts-cache": "rimraf *.tsbuildinfo",
"delete-yarn-lock": "rimraf yarn.lock",
"eslint": "eslint --ext .js,.ts packages --max-warnings=-1",
"eslint-fix": "eslint --ext .js,.ts . --fix",
"lint": "eslint && check-types",
"link-pkg": "yarn link-pkg:shell && yarn link-pkg:remote-loader && yarn link-pkg:shared",
"preinstall-dev": "yarn link-pkg",
"install-dev": "yarn install",
"reset": "run-s --continue-on-error clean delete-node-modules delete-yarn-lock",
"serve-build": "yarn http-server dist -p 8081 -P http://localhost:8081?",
"build-netlify": "cross-env NETLIFY=true yarn install && yarn build"
},
"devDependencies": {
"@sharegate/eslint-config-react": "5.0.1",
"@sharegate/eslint-config-recommended": "3.0.1",
"@sharegate/eslint-config-typescript": "4.0.1",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/webpack": "5.28.0",
"@typescript-eslint/parser": "5.46.1",
"cross-env": "7.0.3",
"css-loader": "6.7.3",
"eslint": "8.29.0",
"html-webpack-plugin": "5.5.0",
"http-server": "14.1.1",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"ts-loader": "9.4.2",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.4.5",
"wmfnext-shell": "0.1.1",
"wmfnext-remote-loader": "0.2.0",
"wmfnext-shared": "0.1.0"
}
}