-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 2 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": "dotrobot",
"author": "Shoichi Aizawa <[email protected]>",
"version": "0.1.0",
"description": "A website for sharebase.robot",
"license": "MIT",
"engines": {
"node": ">=6"
},
"scripts": {
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --colors",
"build": "NODE_ENV=production webpack",
"lint": "eslint src config",
"lint:fix": "npm run lint -- --fix",
"deploy:now": "npm run build && cd dist && now --static -p -n mashup-template && cd ..",
"deploy:gae:staging": "npm run build && gcloud app deploy --version=staging --no-promote && gcloud app browse && gcloud app logs tail -s default",
"deploy:gae:production": "npm run build && gcloud app deploy --version production && gcloud app browse && gcloud app logs tail -s default"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^1.0.1",
"css-loader": "^0.28.0",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.5.0",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.8",
"preload-webpack-plugin": "^2.0.0",
"recursive-readdir-sync": "^1.0.6",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"bootstrap": "^3.3.7",
"dotenv-webpack": "^1.5.4",
"jquery": "^3.2.1",
"normalize.css": "^7.0.0"
}
}