-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.21 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.21 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "navigation-widget",
"version": "1.0.27",
"description": "OpenInfra Foundation Navigation Widget",
"main": "index.js",
"scripts": {
"clean": "find . -name \"dist\" -type d -prune -exec rm -rf '{}' + & find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' + && yarn",
"build-dev": "./node_modules/.bin/webpack --config webpack.dev.js",
"build": "./node_modules/.bin/webpack --config webpack.prod.js",
"serve": "webpack-dev-server --open --port=8888 --https --config webpack.dev.js",
"copy-extras": "cp -rf package.json README.md dist",
"publish-package": "yarn build && yarn publish",
"test": "jest --watch"
},
"author": "tcastilloboireau@gmail.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:OpenStackweb/navigation-widget.git"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
]
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"babel-cli": "^6.26.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.4",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^3.1.0",
"dotenv-webpack": "^7.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"path": "^0.12.7",
"react": "^16.8.4",
"react-dom": "^16.4.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.1",
"svg-url-loader": "^7.1.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "^16.8.4"
}
}