-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "big-bid-board",
"version": "1.0.0",
"description": "Simple frontend, showing bid items",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress --colors -p && ./publish.sh"
},
"engine": "^5.8.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pliegl/we16-bid-board.git"
},
"keywords": [
"Business Informatics Group",
"Web Engineering",
"BIG bid board"
],
"author": "Philipp Liegl",
"license": "MIT",
"bugs": {
"url": "https://github.com/pliegl/we16-bid-board/issues"
},
"homepage": "https://github.com/pliegl/we16-bid-board#readme",
"dependencies": {
"bootstrap": "^3.3.6",
"normalize-css": "^2.3.1",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^1.0.7",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}