This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.59 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
{
"name": "react-microfe",
"version": "1.0.7",
"description": "",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"cd apps/test-main && npm start\" \"cd apps/test-remote && npm start arg\"",
"dev:setup": "cd apps/test-main && npm i && cd ../test-remote && npm i && cd ../ && npm run build && npm run dev:link",
"dev:link": "cd apps/test-main && npm link ../../ && cd ../test-remote && npm link ../../",
"dev:buildremote": "cd apps/test-remote && export NODE_ENV=development && npx webpack --config microfe.config.js && cp -f dist/myfrontend.js public/myfrontend.js",
"build": "npm run clean && tsc",
"clean": "rm -rf lib",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"preversion": "npm test",
"version": "npm run build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"files": [
"lib"
],
"author": "",
"license": "ISC",
"dependencies": {
"wrapper-webpack-plugin": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/webpack": "^4.39.1",
"concurrently": "^4.1.2",
"jest": "24.8.0",
"jest-fetch-mock": "^2.1.2",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"webpack": "^5.11.0",
"webpack-cli": "^3.3.8"
}
}