-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
104 lines (104 loc) · 3.39 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "jrf-sunny",
"version": "1.0.0",
"description": "A website for jrf-sunny",
"main": "client/index.coffee",
"repository": {
"type": "git",
"url": "[email protected]:5fpro/jrf-sunny.git"
},
"author": "Jude Wang",
"license": "ISC",
"bugs": {
"url": "https://github.com/5fpro/jrf-sunny/issues"
},
"homepage": "https://github.com/5fpro/jrf-sunny#readme",
"publicPath": "/assets/",
"paths": {
"root": "./client",
"config": "./client/config",
"stylesheets": "./client/stylesheets",
"images": "./client/images",
"icons": "./client/icons"
},
"scripts": {
"start": "redis-server & F2E_DEV=true bundle exec rails s -b 0.0.0.0 & bundle exec guard -i & npm run webpack-dev-server",
"rails": "redis-server & bundle exec rails s & bundle exec guard -i",
"check": "rubocop --auto-correct",
"console": "redis-server & bundle exec rails c",
"prerebase": "bundle install",
"rebase": "npm run migrate",
"postrebase": "npm run test",
"migrate": "redis-server & bundle exec rake db:migrate",
"postmigrate": "npm run stop:redis",
"reset": "redis-server & redis-cli flushall",
"postreset": "npm run stop:redis",
"test": "redis-server & bundle exec rake spec && npm run check",
"posttest": "npm run stop:redis",
"clean": "rake tmp:clear && rake tmp:sessions:clear",
"preupdate": "npm run webpack",
"update": "gulp update",
"prepush": "npm run update",
"push": "git push",
"postwebpack": "gulp resolve-url",
"deploy": "gulp deploy",
"stop:redis": "redis-cli shutdown",
"webpack-dev-server": "nodemon --watch webpack.config.coffee --watch webpack.parts.coffee --exec \"webpack-dev-server --env.target development\"",
"webpack": "webpack --env.target production --env.build_path app/assets"
},
"dependencies": {
"animate.css": "^3.5.1",
"chosen-js": "^1.6.2",
"js-cookie": "^2.1.3",
"lazysizes": "^2.0.0",
"magnific-popup": "^1.1.0",
"modernizr": "^3.5.0",
"modularscale-sass": "^2.1.1",
"node.normalize.scss": "^3.0.3",
"picturefill": "3.x",
"sass-toolkit": "^2.10.0",
"scut": "^1.4.0",
"slick-carousel": "^1.6.0",
"susy": "^2.2.12",
"waypoints": "^4.0.0",
"webui-popover": "^1.2.13"
},
"devDependencies": {
"animate-css-webpack": "^3.5.6",
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"coffee-loader": "^0.7.3",
"coffee-script": "^1.12.5",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"gulp": "^3.9.1",
"gulp-error-notifier": "^1.1.0",
"gulp-replace": "^0.5.4",
"image-webpack-loader": "^3.3.0",
"ip": "^1.1.5",
"modernizr-loader": "^1.0.1",
"node-notifier": "^5.1.2",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"postcss-assets": "^4.1.0",
"postcss-calc": "^5.3.1",
"postcss-clearfix": "^1.0.0",
"postcss-hexrgba": "^0.2.1",
"postcss-loader": "^1.3.3",
"postcss-short": "^1.4.0",
"postcss-strip-units": "^1.2.0",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"script-loader": "^0.7.0",
"style-loader": "^0.16.1",
"svg-sprite-loader": "0.3.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0",
"yaml-loader": "^0.4.0"
}
}