-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "People",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "webpack-dev-server --content-base /dist --inline --devtool source-map",
"test": "mocha --recursive --compilers js:babel-register ./test",
"build": "webpack -p",
"lint": "eslint client/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ninjascript/people"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"bootstrap-sass": "^3.3.6",
"chai": "^3.4.1",
"clean-webpack-plugin": "^0.1.5",
"copy-webpack-plugin": "^0.3.3",
"css-loader": "^0.23.0",
"eslint": "^1.10.3",
"eslint-config-idiomatic": "^0.3.0",
"eslint-plugin-react": "^3.15.0",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"rewire": "^2.5.1",
"sass-loader": "^3.1.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"history": "^1.17.0",
"moment": "^2.11.1",
"react": "^0.14.5",
"react-dom": "^0.14.5",
"react-redux": "^4.0.6",
"react-router": "^1.0.3",
"react-router-redux": "^4.0.0",
"redux": "^3.0.5",
"redux-thunk": "^1.0.3",
"uuid": "^2.0.1"
}
}