-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
85 lines (85 loc) · 2.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "eventos",
"version": "0.0.1",
"description": "Lista de eventos, meetups, encontros e qualquer tipo de aglomeração frontender.",
"repository": {
"type": "git",
"url": "git+https://github.com/frontendbr/eventos.git"
},
"scripts": {
"start": "npm run clean && gulp",
"start:dev": "cross-env NODE_ENV=development concurrently --kill-others 'gulp dev' 'node src/server.js'",
"test": "npm run lint && tape -r babel-register test/**/*.js | tap-spec",
"clean": "rm -rf build",
"deploy": "cross-env NODE_ENV=production npm run lint && npm run build && gulp deploy && git checkout develop && git push upstream develop && git checkout master && git merge develop && git push upstream master && git checkout develop",
"lint": "standard './src/**/*.js' | snazzy",
"precommit": "npm run lint",
"prepush": "npm run lint",
"build": "cross-env NODE_ENV=production gulp build && npm run build:js",
"build:js": "cross-env NODE_ENV=production webpack --progress --config webpack.config.prod.js -p"
},
"keywords": [
"eventos",
"meetups",
"encontros",
"frontend"
],
"author": "Comunidade Frontend BR",
"license": "MIT",
"bugs": {
"url": "https://github.com/frontendbr/eventos/issues"
},
"homepage": "https://github.com/frontendbr/eventos#readme",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"browser-sync": "^2.17.0",
"concurrently": "^2.2.0",
"cross-env": "^2.0.1",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-cheerio": "^0.6.2",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.1.2",
"gulp-ejs": "^2.2.1",
"gulp-gh-pages": "^0.5.4",
"gulp-group-css-media-queries": "^1.2.0",
"gulp-htmlmin": "^1.3.0",
"gulp-imagemin": "^2.4.0",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-stylus": "^2.5.0",
"gulp-svgmin": "^1.2.3",
"gulp-svgstore": "^6.0.0",
"gulp-uglify": "^1.5.4",
"lost": "^6.8.1",
"postcss-font-magician": "^1.4.0",
"poststylus": "^0.2.3",
"react-hot-loader": "^3.0.0-beta.5",
"rucksack-css": "^0.8.6",
"rupture": "^0.6.1",
"snazzy": "^4.0.1",
"standard": "^7.1.2",
"standard-loader": "^4.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"webpack-validator": "^2.2.8",
"whacko": "^0.19.1"
},
"dependencies": {
"@fdaciuk/ajax": "^2.1.2",
"preact": "^6.2.1",
"preact-compat": "^3.6.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
}
}