forked from anta-semenov/ToDoProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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": "to-do-project",
"version": "1.0.0",
"description": "Getting starting with creating web apps",
"scripts": {
"start": "node server.js",
"lint": "eslint src",
"test": "mocha --compilers js:babel-core/register --require ./tests/test_helper.js './tests/**/*_spec.@(js|jsx)'",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/anta-semenov/ToDoProject.git"
},
"author": "Anton Semenov",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"chai-immutable": "^1.5.3",
"eslint": "2.2.0",
"eslint-plugin-react": "^4.2.1",
"mocha": "^2.4.5",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.5",
"testdom": "^2.0.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"immutable": "^3.7.6",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1"
}
}