-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 970 Bytes
/
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
{
"name": "react-utility-tools",
"version": "0.0.1",
"description": "A set of tools to help on react applications development",
"main": "index.js",
"repository": "https://github.com/jmsstudio/react-utility-tools.git",
"author": "jmsstudio",
"license": "MIT",
"scripts": {
"watch": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"lint": "eslint src/"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}