-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "DJShowcases",
"version": "1.0.0",
"description": "Tracking newsroom data journalism projects.",
"main": "app/main.js",
"private": true,
"scripts": {
"start": "webpack-dev-server --devtool eval --progress --colors",
"build": "webpack",
"update": "node ./scripts/update.js",
"deploy": "./deploy.sh",
"validate": "npm ls",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/shujianbu/DJShowcases.git"
},
"keywords": [
"data",
"journalism",
"visualization",
"数据新闻"
],
"author": "Shujian Bu, Yue Qiu, Youyou Zhou",
"bugs": {
"url": "https://github.com/shujianbu/DJShowcases/issues"
},
"homepage": "http://shujianbu.github.io/DJShowcases",
"devDependencies": {
"babel": "^5.8.34",
"babel-core": "^5.8.34",
"babel-loader": "^5.3.2",
"chai": "^3.5.0",
"commitizen": "^2.6.2",
"cz-conventional-changelog": "^1.1.5",
"eslint-plugin-react": "^3.16.1",
"fast-csv": "^1.0.0",
"google-spreadsheet": "^1.1.4",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"css-loader": "^0.23.1",
"dsv-loader": "^1.0.3",
"file-loader": "^0.8.5",
"material-ui": "^0.14.4",
"react": "^0.14.6",
"react-addons": "^0.9.0",
"react-dom": "^0.14.7",
"react-tap-event-plugin": "^0.2.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}