-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.75 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.75 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "visa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --open",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "node_modules/.bin/eslint src/js",
"prettier": "prettier --write src/js/*.js",
"babel": "./node_modules/.bin/babel src --out-dir lib",
"build": "NODE_ENV=production webpack",
"prepublishOnly": "npm run build"
},
"files": [
"lib"
],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"redux-devtools": "^3.5.0",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"script-loader": "^0.7.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"lint-staged": {
"src/js/*.{js, jsx}": [
"node_modules/.bin/eslint --max-warnings=0",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-preset-react-app": "^3.1.2",
"bootstrap": "^4.4.1",
"jquery": "^3.5.1",
"ol": "^6.2.1",
"popper.js": "^1.16.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"websocket-extensions": "^0.1.4"
}
}