-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "starbuck",
"version": "0.4.1",
"description": "📦 NPM dependency tracking server",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcsapo/starbuck.git"
},
"author": "Gabriel J. Csapo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielcsapo/starbuck/issues"
},
"homepage": "https://github.com/gabrielcsapo/starbuck#readme",
"scripts": {
"lint": "standard",
"test": "tape test/**.js",
"coverage": "tap test/*.js --coverage --coverage-report=lcov",
"build": "NODE_ENV=production webpack --progress --mode production",
"dev": "webpack-dev-server --hot --mode production",
"start": "./bin/index.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir=./docs/storybook",
"generate-docs": "tryitout"
},
"bin": {
"starbuck": "./bin/index.js"
},
"engines": {
"node": ">= 8"
},
"standard": {
"envs": [
"browser",
"node"
],
"parser": "babel-eslint",
"ignore": [
"docs/**",
"dist/**"
]
},
"dependencies": {
"async": "^2.6.2",
"badgeit": "^0.1.1",
"express": "^4.16.2",
"memory-cache": "^0.2.0",
"nconf": "^0.10.0",
"pacote": "^9.5.0",
"request": "^2.83.0",
"semver": "^6.0.0",
"serve-static": "^1.14.1",
"woof": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@storybook/react": "^5.0.11",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"css-loader": "^2.1.1",
"prop-types": "^15.7.2",
"psychic.css": "0.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"tap": "^13.1.9",
"tape": "^4.10.1",
"tryitout": "^2.1.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"whatwg-fetch": "^3.0.0"
}
}