-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
54
55
56
57
58
59
{
"name": "us-weather",
"type": "module",
"version": "0.0.0",
"description": "web app to display weather info from the NWS",
"license": "MIT",
"author": "Patrick Mueller <[email protected]> (https://github.com/pmuellr)",
"homepage": "https://github.com/pmuellr/us-weather",
"scripts": {
"build": "tools/build.sh",
"standard": "standard --verbose",
"utest": "tap test/test-*.js",
"test": "standard --verbose && npm -s run utest",
"watch": "nodemon --exec 'npm run -s standard && npm run -s build'",
"serve": "serve"
},
"repository": {
"type": "git",
"url": "https://github.com/pmuellr/us-weather.git"
},
"bugs": {
"url": "https://github.com/pmuellr/us-weather/issues"
},
"standard": {
"ignore": [
"tmp/**",
"docs/**"
]
},
"nodemonConfig": {
"ext": "js,jsx,json,css,less,html,sh",
"ignore": [
"docs/*"
],
"delay": "1000"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"dependency-check": "^4.1.0",
"express": "^4.17.1",
"nodemon": "^2.0.4",
"standard": "^14.3.4",
"tap": "^14.10.8",
"uuid": "^8.3.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"d3": "^6.2.0",
"leaflet": "^1.7.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-vega": "^7.4.1",
"vega": "^5.17.0",
"vega-lite": "^4.16.8"
}
}