This repository was archived by the owner on Mar 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 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
57
58
59
60
{
"name": "myhypermendixwidget",
"version": "1.0.0",
"description": "My brand new hyper widget!",
"main": "index.js",
"keywords": [
"Mendix",
"widget",
"React",
"Javascript"
],
"author": {
"name": "John Doe",
"email": "john.doe@example.com"
},
"license": " MIT",
"dependencies": {
"classnames": "^2.2.6",
"react-resize-detector": "^4.2.0",
"vis": "^4.21.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.5.1",
"babel": "^6.23.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"clean-webpack-plugin": "^2.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"file-loader": "^3.0.1",
"fs-extra": "^7.0.1",
"jest": "^24.7.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"opn-cli": "^4.1.0",
"postcss-clean": "^1.1.0",
"postcss-loader": "^3.0.0",
"react": "^16.8.6",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.1.0",
"webpack": "^4.29.6",
"webpack-archive-plugin": "^3.0.0",
"webpack-cli": "^3.3.0",
"xml-webpack-plugin": "^0.0.2"
},
"scripts": {
"dev": "cross-env MODE=development webpack --config conf/webpack.config.js",
"build": "cross-env MODE=production webpack --config conf/webpack.config.js",
"test": "jest --config conf/jest.config.js",
"test:watch": "jest --watchAll --config conf/jest.config.js ",
"test:coverage": "jest --config conf/jest.config.js --coverage"
}
}