-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
52 lines (52 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
49
50
51
52
{
"name": "swip",
"version": "0.1.0",
"description": "",
"main": "src/server/index.js",
"scripts": {
"test": "mocha",
"dev": "webpack --watch",
"build": "webpack",
"particles": "node examples/particles/server/index.js",
"particles:dev": "nodemon examples/particles/server/index.js",
"golf": "node examples/golf/server/index.js",
"golf:dev": "nodemon examples/golf/server/index.js",
"contact": "node examples/contact-share/server/index.js",
"contact:dev": "nodemon examples/contact-share/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulsonnentag/swip.git"
},
"author": "Tim Großmann, Paul Sonnentag",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulsonnentag/swip/issues"
},
"homepage": "https://github.com/paulsonnentag/swip#readme",
"dependencies": {
"immutability-helper": "^2.0.0",
"lodash": "^4.13.1",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-node-logger": "0.0.3",
"uid": "0.0.2"
},
"peerDependencies": {
"socket.io": "1.4.x"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"css-loader": "^0.25.0",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.11.1",
"mocha": "^3.0.2",
"should": "^10.0.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.5",
"style-loader": "^0.13.1"
}
}