-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "d3-react",
"version": "1.0.0",
"description": "D3/React scaffold",
"main": "index.js",
"scripts": {
"start": "hjs-dev-server",
"build": "webpack",
"deploy": "echo \"Error: no deployment specified\" && exit 1",
"preversion": "git checkout master && git pull && npm run validate",
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags",
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags",
"publish-major": "npm run preversion && npm version major && git push origin master --tags",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "jshint ./src",
"validate": "npm ls"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"d3": "^3.5.16",
"file-loader": "^0.8.5",
"hjs-webpack": "^8.1.0",
"intl": "^1.1.0",
"json-loader": "^0.5.4",
"postcss-loader": "^0.8.2",
"precommit-hook": "*",
"react": "^15.0.1",
"react-addons-css-transition-group": "^15.0.1",
"react-dom": "^15.0.1",
"react-intl": "^2.0.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.2",
"stylus-loader": "^2.0.0"
},
"pre-commit": [
"lint",
"validate",
"build"
]
}