forked from godaddy/eslint-plugin-i18n-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 795 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
{
"name": "i18n-webpack-local-dev-example",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build:dev": "webpack --config webpack.config.dev.js",
"start:dev": "webpack-dev-server --open --config webpack.config.dev.js"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"eslint": "^5.12.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-i18n-json": "^2.4.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}