forked from afonsopacifer/react-pomodoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.53 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
{
"name": "react-pomodoro",
"version": "0.4.1",
"description": "Pomodoro timer for developers.",
"license": "MIT",
"main": "webpack.config.js",
"author": {
"name": "Afonso Pacifer",
"email": "[email protected]",
"url": "http://afonsopacifer.com"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --content-base app --inline --hot",
"lint": "./node_modules/.bin/eslint app/components/**/*.js",
"build": "NODE_ENV='production' ./node_modules/.bin/webpack",
"deploy": "git push origin `git subtree split --prefix app master`:gh-pages --force",
"test": "mocha --require ./__tests__/mock-dom.js --compilers js:babel-core/register --recursive __tests__ --timeout 15000"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "^2.11.1",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.1.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"mousetrap": "^1.5.3",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-github-corner": "^0.3.0",
"react-title-component": "^1.0.1"
}
}