-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.5 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "front10-rating",
"version": "2.0.1",
"description": "React rating component",
"main": "build/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Belzee10/front10-rating.git"
},
"author": {
"name": "Ivan Perez",
"email": "belzee92@gmail.com"
},
"peerDependencies": {
"react": "^16.8.4"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"scripts": {
"start": "webpack --watch --env development --mode development",
"build": "webpack --env production --mode production",
"lint": "eslint ./src/** --ext jsx --fix",
"analize": "webpack --profile --json > stats.json"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"style-loader": "^0.23.1",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.2"
}
}