-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.84 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
60
61
{
"name": "earthspace",
"version": "0.0.1",
"description": "",
"main": "server/index.js",
"scripts": {
"start": "concurrently \"npm run dev\" \"nodemon ./server/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --mode development --config ./webpack.config.js",
"build": "webpack --mode production",
"lint": "eslint --ext .js src",
"fix": "eslint --ext .js src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaslorincz/earthspace.git"
},
"author": "Thomas Lorincz",
"license": "ISC",
"bugs": {
"url": "https://github.com/thomaslorincz/earthspace/issues"
},
"homepage": "https://github.com/thomaslorincz/earthspace#readme",
"dependencies": {
"@babel/runtime": "^7.3.1",
"d3": "^5.7.0",
"express": "^4.16.4",
"firebase": "^5.8.1",
"firebase-admin": "^6.5.1",
"material-design-icons": "^3.0.1",
"three": "^0.96.0",
"topojson": "^3.0.2",
"yargs": "^12.0.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-classes": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@types/express": "^4.16.1",
"@types/webpack": "^4.4.24",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"css-loader": "^1.0.1",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.18.9",
"style-loader": "^0.23.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}