-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 KB
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
{
"name": "@konekto/bundle",
"version": "5.7.0",
"description": "Simple web bundler",
"homepage": "https://github.com/konekto/bundle",
"main": "index.js",
"bin": {
"bundle": "./bin/index.js"
},
"scripts": {
"test": "mocha",
"start-server": "http-server -c-1 ./test/tmp",
"docker:build": "docker build -t bundle .",
"docker:tag": "docker tag bundle konekto/bundle:$npm_package_version ",
"docker:push": "docker push konekto/bundle:$npm_package_version"
},
"author": "Haithem Bel Haj <haithem@konek.to>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:konekto/bundle.git"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@konekto/preset-react": "^1.2.0",
"@storybook/addon-actions": "^4.1.13",
"@storybook/addon-console": "^1.1.0",
"@storybook/addon-viewport": "^4.1.13",
"@storybook/react": "^5.0.11",
"autoprefixer": "^8.5.2",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.7",
"chokidar": "^2.0.3",
"css-loader": "^2.1.1",
"dependency-tree": "^6.0.1",
"glob": "^7.1.2",
"lodash": "^4.17.11",
"meow": "^4.0.0",
"mini-css-extract-plugin": "^0.7.0",
"mkdirp": "^0.5.1",
"postcss-loader": "^3.0.0",
"rc": "^1.2.8",
"react": "^16.4.0",
"react-hot-loader": "^4.3.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.44.2",
"webpack-dev-middleware": "^3.6.0",
"webpack-hot-middleware": "^2.24.3"
},
"devDependencies": {
"http-server": "^0.12.3",
"mocha": "^8.1.3"
}
}