-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "dorian",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:smarterlabs/dorian.git",
"author": "Kennedy Rose <[email protected]>",
"license": "PURCHASE AT cryolayer.com",
"private": true,
"scripts": {
"build": "yarn run clean && cd packages/orchestration && dotenv -e ../../.env -- npm run build",
"clean": "del dist",
"serve": "serve dist",
"stop": "sudo killall -9 node",
"version": "lerna version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@smarterlabs/babel-preset": "^1.0.8",
"@smarterlabs/eslint-config": "^1.0.7",
"del-cli": "^4.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.30.0",
"husky": "^4.2.0",
"lerna": "^3.22.1",
"lint-staged": "^11.0.0",
"netlify-plugin-image-optim": "^0.4.0",
"netlify-plugin-inline-critical-css": "^1.2.0",
"netlify-plugin-subfont": "^6.0.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"serve": "^12.0.0"
}
}