-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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": "ip-scavenger-hunt",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"databases": "node preparedatabases.js",
"build": "npm run databases && webpack --mode=development",
"build-nodata": "webpack --mode=development",
"release": "npm run databases && webpack --mode=production",
"release-nodata": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KewlKris/ip-scavenger-hunt.git"
},
"keywords": [],
"author": "Christopher Chamberlain",
"license": "MIT",
"bugs": {
"url": "https://github.com/KewlKris/ip-scavenger-hunt/issues"
},
"homepage": "https://github.com/KewlKris/ip-scavenger-hunt#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"babel-preset-minify": "^0.5.1",
"copy-webpack-plugin": "^9.0.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@babel/runtime-corejs3": "^7.15.3",
"d3": "^7.0.1",
"lzutf8": "^0.6.0"
}
}