-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "react-pomodoro",
"version": "0.0.1",
"description": "Timer to Pomodoro made in React",
"main": "index.js",
"scripts": {
"start": "webpack && node server.js",
"test": "npm run compile && mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igr-santos/react-pomodoro.git"
},
"keywords": [
"react",
"redux",
"pomodoro"
],
"author": "Igor Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/igr-santos/react-pomodoro/issues"
},
"homepage": "https://github.com/igr-santos/react-pomodoro#readme",
"dependencies": {
"compression": "^1.6.2",
"express": "^4.13.4",
"lodash": "^4.13.1",
"react": "^0.14.8",
"react-dom": "^0.14.7",
"symbol-observable": "^0.2.4"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"expect": "^1.20.1",
"mocha": "^2.5.3",
"webpack": "^1.12.13"
}
}