-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "jira-tables",
"version": "0.9.1",
"description": "Jira table creator based on form fields",
"repository": {
"type": "git",
"url": "https://github.com/trembacz/jira-tables.git"
},
"author": "Tomasz Rembacz",
"license": "MIT",
"scripts": {
"serve": "node server",
"watch": "NODE_ENV=development webpack --config ./webpack.development.config.js --colors --hide-modules --watch --watch-poll",
"dev": "NODE_ENV=development webpack --config ./webpack.development.config.js --colors --progress --hide-modules",
"prod": "NODE_ENV=production webpack --config ./webpack.production.config.js --progress --colors --hide-modules",
"eslint": "eslint ."
},
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"redux": "^4.0.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"core-js": "^3.2.0",
"eslint": "^6.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-react": "^7.14.3",
"html-webpack-plugin": "^3.2.0",
"prop-types": "^15.7.2",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
}
}