-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.33 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
{
"name": "sdg-prototype",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compress-images": "node compress-images.js",
"compile-sass": "yarn run webpack --config webpack.sass.js",
"compile-js:production": "yarn run webpack --config webpack.config.js --env.NODE_ENV=\"production\" --display-error-details",
"compile-js:staging": "yarn run webpack --config webpack.config.js --env.NODE_ENV=\"staging\" --display-error-details",
"compile-js:development": "yarn run webpack --config webpack.config.js --env.NODE_ENV=\"development\" --display-error-details",
"prebuild:production": "yarn run compress-images && yarn run compile-sass && yarn run compile-js:production",
"prebuild:staging": "yarn run compress-images && yarn run compile-sass && yarn run compile-js:staging",
"prebuild:development": "yarn run compress-images && yarn run compile-sass && yarn run compile-js:development",
"build:production": "JEKYLL_ENV=production jekyll build --config _config.yml,_config-production.yml",
"build:staging": "jekyll build --config _config.yml,_config-staging.yml",
"build:development": "jekyll build --config _config.yml,_config-development.yml"
},
"author": "",
"license": "ISC",
"dependencies": {
"core-js": "^2.5.3",
"imagemin": "^5.3.1",
"imagemin-jpegtran": "^5.0.2",
"imagemin-pngquant": "^5.0.1",
"node-sass": "^4.9.2",
"sharp": "^0.20.0",
"vue": "^2.5.13",
"vue-analytics": "^5.9.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"compress-images": "^1.1.8",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^3.0.2",
"postcss-loader": "^2.1.1",
"sass-loader": "^6.0.7",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"vue-loader": "^13.6.1",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squeakyspacebar/sdg-prototype.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/squeakyspacebar/sdg-prototype/issues"
},
"homepage": "https://github.com/squeakyspacebar/sdg-prototype#readme"
}