-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.49 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
{
"name": "gradissue-2017",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/daily-bruin/gradissue-2017.git",
"scripts": {
"start": "nodemon --ignore build/ server.js",
"compile-nunjucks": "nunjucks index.nunjucks source/content/content.json -p source/templates -o build",
"postinstall": "mkdir -p uploads && mkdir -p build && mkdir -p build/img && npm run copy-static && npm run compile-js:dev && npm run compile-sass:dev",
"copy-img": "cp source/img/* build/img/",
"copy-static": "mkdir -p build/static && cp source/static/* build/static/",
"compile-js:dev": "babel source/js -d build/js --source-maps && browserify build/js/script.js -o build/js/bundle.js",
"autoprefix": "postcss --use autoprefixer -r build/css/*.css",
"compile-sass:dev": "node-sass source/sass/*.scss -o build/css && postcss --use autoprefixer -r build/css/*.css",
"browser-sync": "browser-sync start --server build/ --files build/ --reload-delay 2000",
"dev": "watch 'npm run compile-nunjucks' source/templates/ source/content/ & watch 'npm run copy-static' source/static/ & watch 'npm run compile-js:dev' source/js/ & watch 'npm run copy-img' source/img/ & watch 'npm run compile-sass:dev' source/sass/ & npm run browser-sync & npm start"
},
"dependencies": {
"Leaflet.Geodesic": "https://github.com/henrythasler/Leaflet.Geodesic.git",
"apicache": "^0.8.6",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"express-fileupload": "^0.1.3",
"google-spreadsheet": "^2.0.4",
"leaflet": "^1.0.3",
"leaflet-providers": "^1.1.16",
"leaflet.polyline.snakeanim": "^0.1.1",
"lightslider": "^1.1.6",
"morgan": "^1.8.2",
"nodemon": "^1.11.0",
"nunjucks": "^3.0.1",
"pg": "^6.2.3",
"pg-hstore": "^2.3.2",
"redis": "^2.7.1",
"sequelize": "^3.30.4",
"shortid": "^2.2.8"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1",
"browser-sync": "^2.18.12",
"browserify": "^14.4.0",
"cpx": "^1.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"htmlhint": "^0.9.13",
"node-sass": "^4.5.3",
"nunjucks-cli": "^0.5.1",
"postcss-cli": "^4.0.0",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"watch": "^1.0.2"
}
}