forked from noops-challenge/hexbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "hexbot",
"version": "0.0.1",
"description": "Hexbot challenge (Lonny Gomes)",
"main": "src/index.js",
"scripts": {
"build": "rimraf dist && webpack --mode=production",
"start": "webpack-dev-server --open",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LonnyGomes/hexbot.git"
},
"keywords": [
"hexbot",
"challenge"
],
"author": "Lonny Gomes",
"license": "ISC",
"bugs": {
"url": "https://github.com/LonnyGomes/hexbot/issues"
},
"homepage": "https://github.com/LonnyGomes/hexbot#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"cesium": "^1.58.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"url-loader": "^2.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"axios": "^0.19.0",
"core-js": "^3.1.4"
}
}