-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.27 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
{
"name": "iteratehackerspace.github.io",
"version": "2.1.0",
"description": "Code behind iteratehackerspace.github.io",
"main": "index.js",
"scripts": {
"server": "webpack-dev-server",
"front-end-lectures": "babel --presets=es2015,react front-end-lectures.js > f.js && node f.js",
"watch": "fswatch -o lib -o front-end-lectures.js | xargs -n1 -I{} ./build.sh",
"bundle": "webpack --progress --colors -p --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iteratehackerspace/iteratehackerspace.github.io.git"
},
"author": "Edgar Aroutiounian",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iteratehackerspace/iteratehackerspace.github.io/issues"
},
"homepage": "https://github.com/iteratehackerspace/iteratehackerspace.github.io#readme",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"htmltojsx": "^0.2.6",
"prettier": "^1.5.3",
"webpack": "^3.5.3",
"webpack-dev-server": "^2.7.1"
}
}