-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1001 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1001 Bytes
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
{
"name": "@jmind.systems/react-role-controller",
"version": "0.0.4",
"description": "",
"keywords": ["react", "role", "role-controller"],
"main": "index.js",
"scripts": {
"test": "jest",
"build": "rm -rf ./dist && webpack --mode development --config ./webpack.config.js && cp package.json dist/ && cp README.md dist/"
},
"author": "andrey_polovinchenko",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.(ts|js)$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"ts"
]
},
"devDependencies": {
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"babel-jest": "^25.2.6",
"babel-plugin-module-resolver": "^4.0.0",
"copy-webpack-plugin": "^6.0.2",
"jest": "^25.2.7",
"prettier": "^2.0.3",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@types/react": "^16.9.44",
"prop-types": "^15.7.2"
}
}