-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "gopx",
"private": true,
"version": "1.0.0",
"description": "The stable package registry for Golang",
"scripts": {
"setup": "npm install && go build",
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development --config webpack.config.dev.js",
"build": "npm run build:prod",
"start:prod": "npm run build:prod && ./scripts/run.sh",
"start:dev": "nodemon --exec 'npm run build:dev && ./scripts/run.sh'",
"start": "npm run start:dev",
"stop": "lsof -ti :8080 | xargs kill"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gopx/gopx.git"
},
"author": "Rousan Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/gopx/gopx/issues"
},
"homepage": "https://github.com/gopx/gopx#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "6.1.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.0",
"nodemon": "^1.18.4",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"lodash": "^4.17.11"
}
}