-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.43 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
{
"name": "gas-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for Google Apps Script projects with Webpack and Flow.",
"main": "index.js",
"author": "Ville Vaarala <ville.l.vaarala@gmail.com>",
"license": "MIT",
"scripts": {
"build": "yarn webpack",
"flow-typed": "flow-typed install --ignoreDeps dev peer",
"lint": "eslint src && prettylint README.md && yarn flow --quiet",
"lint:fix": "yarn eslint src --fix && prettylint README.md --fix",
"precommit": "yarn lint",
"setup": "yarn clasp create --rootDir ./dist"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@google/clasp": "^1.6.3",
"babel-eslint": "^8.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-gas": "^2.0.3",
"es3ify-webpack-plugin": "^0.0.1",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-googleappsscript": "^1.0.0",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.84.0",
"flow-typed": "^2.5.1",
"gas-webpack-plugin": "^0.2.1",
"husky": "^0.14.3",
"lodash-webpack-plugin": "^0.11.5",
"prettier": "^1.5.3",
"prettylint": "^1.0.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"lodash": "^4.17.11"
}
}