-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.69 KB
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": "lefty",
"version": "1.0.0",
"description": "Lefty",
"repository": {
"type": "git",
"url": "git+https://github.com/WaiSystems/Lefty.git"
},
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/server/server.js",
"build": "webpack --config config/webpack.js",
"postinstall": "node deploy.js",
"start-dev-server": "nodemon src\\server\\server.js --ignore src\\client --ignore config\\ --ignore .idea\\",
"start-dev-hot-reload": "webpack-dev-server --config config\\webpack.js --port 3001",
"start-dev": "(start cmd /K title server ^& npm run start-dev-server) && (start cmd /K title webpack ^& npm run start-dev-hot-reload)"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"css-loader": "^0.22.0",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.4",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^2.1.5",
"style-loader": "^0.13.0",
"webpack": "^1.12.3",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-polyfill": "^6.1.19",
"body-parser": "^1.14.1",
"classnames": "^2.2.0",
"express": "^4.13.3",
"isomorphic-fetch": "^2.2.0",
"lodash": "^3.10.1",
"lowdb": "^0.10.2",
"react": "^0.14.3",
"react-addons-update": "^0.14.3",
"react-dom": "^0.14.3",
"react-mdl": "^1.0.1",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"require-all": "^2.0.0",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"uid2": "0.0.3"
}
}