-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "tai",
"version": "0.0.1",
"private": true,
"main": "handler.js",
"engines": {
"node": ">=8.10"
},
"dependencies": {
"ajv": "^6.5.0",
"babel-runtime": "6.26.0",
"error": "^7.0.2",
"js-string-escape": "^1.0.1",
"jsonpath": "^1.0.0",
"slack": "9.1.5",
"velocityjs": "^1.0.1"
},
"devDependencies": {
"aws-sdk": "^2.236.1",
"aws-sdk-mock": "~2.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"faker": "~4.1.0",
"jest": "^22.4.3",
"nock": "^9.2.5",
"pre-commit": "^1.2.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3"
},
"pre-commit": [
"lint",
"test",
"build"
],
"scripts": {
"build": "NODE_ENV=production webpack --progress --colors",
"lint": "eslint events __tests__ functions pages test handler.js webpack.config.js",
"lint:fix": "eslint --fix $1",
"jest": "NODE_ENV=test jest __tests__/.+/*.test.js --coverage",
"test": "npm run jest",
"test:watch": "npm run jest -- --watch"
}
}