-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
38 lines (38 loc) · 980 Bytes
/
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
{
"name": "begin-app",
"version": "1.0.95",
"description": "Begin app",
"scripts": {
"lint": "eslint src --ignore-pattern node_modules --fix",
"build": "node build/create-social-sharing-images.js",
"test": "PORT=6666 CI=true NODE_ENV=testing tape test/*-test.js | tap-spec",
"start": "NODE_ENV=testing npx sandbox",
"social-images": "node build/create-social-sharing-images.js"
},
"devDependencies": {
"@architect/hydrate": "^1.3.2",
"@architect/sandbox": "^1.4.17",
"@begin/data": "^1.1.2",
"aws-sdk": "^2.504.0",
"chrome-aws-lambda": "^2.0.1",
"eslint": "^6.1.0",
"global-modules": "^2.0.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"puppeteer-core": "^2.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"tiny-json-http": "^7.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}