-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "follow-tube",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack-watch": "webpack -w",
"start": "node ./server",
"dev": "concurrently --kill-others \"npm run webpack-watch\" \"npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonSchapiro/follow-tube.git"
},
"author": "Jonathan Schapiro",
"license": "ISC",
"bugs": {
"url": "https://github.com/JonSchapiro/follow-tube/issues"
},
"homepage": "https://github.com/JonSchapiro/follow-tube#readme",
"dependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"express": "^4.14.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^1.14.0"
},
"devDependencies": {
"concurrently": "^3.1.0"
}
}