-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "hackboard",
"version": "1.0.0",
"description": "A highly configurable, hackable dashboard for development teams",
"main": "index.js",
"scripts": {
"start": "node src/server/index.js",
"compile": "babel -d lib/ src/client/",
"prepublish": "npm run compile",
"test": "npm run testServer; npm run testClient",
"testClient": "mocha --require babel-core/register test/client/",
"testServer": "mocha --require babel-core/register test/server/",
"build": "./node_modules/.bin/webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dos-j/hackboard.git"
},
"author": "dos-j",
"license": "ISC",
"bugs": {
"url": "https://github.com/dos-j/hackboard/issues"
},
"homepage": "https://github.com/dos-j/hackboard#readme",
"dependencies": {
"express": "^4.13.4",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"serenitydi": "^1.0.8"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.5.3",
"mocha": "^2.4.5",
"webpack": "^1.12.14"
}
}