forked from vidit-sh/micro-frontends-module-generator
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.78 KB
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
{
"name": "module-generator",
"version": "1.0.0",
"engines": {
"node": ">=8.9.0",
"yarn": "^1.3.0"
},
"scripts": {
"build:modules": "./node_modules/.bin/webpack-cli --config ./config/webpack/shared.js",
"build:vendors": "./node_modules/.bin/webpack-cli --config ./config/webpack/vendors.js",
"build:server": "rimraf ./build/server && ./node_modules/.bin/webpack-cli --config ./config/webpack/server.js",
"start": "npm run build:server && node build/server/server.js"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"exenv": "^1.2.2",
"express": "^4.16.3",
"husky": "^0.14.3",
"jest": "^23.4.2",
"lint-staged": "^7.2.0",
"mini-css-extract-plugin": "^0.4.1",
"nodemon": "^1.18.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-redux-subspace": "^2.5.0",
"redux": "^4.0.0",
"redux-dynamic-reducer": "^2.0.2",
"redux-thunk": "^2.3.0",
"require-from-string": "^2.0.2",
"rimraf": "^2.6.2",
"styled-components": "^4.1.3",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-manifest-plugin": "^2.0.4",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"babel-plugin-styled-components": "^1.10.0"
}
}