-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "galaxy",
"version": "1.0.0",
"description": "Galaxy example.",
"author": "Shay Davidson <[email protected]>",
"license": "ISC",
"main": "index.js",
"private": true,
"engines": {
"node": ">=8.4.0",
"npm": ">=5.5.1"
},
"scripts": {
"start": "npm run build && npm run open && npm run watch",
"open": "open ./public/index.html",
"build": "webpack",
"build:release": "NODE_ENV=production webpack",
"watch": "webpack -w",
"lint": "eslint . --ext .json --ext .js",
"format": "eslint . --ext .json --ext .js --fix"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.8.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.0",
"eslint-plugin-promise": "^3.6.0",
"prettier": "^1.8.2",
"webpack": "^3.8.1"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
}
}