-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "lila",
"private": true,
"license": "MIT",
"scripts": {
"precommit": "npm run lint-staged",
"lint-staged": "lint-staged",
"prettier": "prettier --write \"./**/*.{js,css,less,scss,sass,html,md,json}\"",
"eslint": "eslint \"./**/*.js\"",
"eslint:fix": "eslint \"./**/*.js\" --fix",
"stylelint": "stylelint \"./**/*.{css,less,scss,sass}\"",
"stylelint:fix": "stylelint \"./**/*.{css,less,scss,sass}\" --fix",
"build": "rollup -c",
"build:create": "npm run build -- --name create",
"build:bin": "npm run build -- --name bin",
"build:core": "npm run build -- --name core",
"build:tasks": "npm run build -- --name tasks",
"build:webpack": "npm run build -- --name webpack",
"build:webpack-config": "npm run build -- --name webpack-config",
"build:all": "npm run build -- --name all",
"clean": "rimraf packages/*/lib",
"pretest": "npm run build:all",
"test": "jest packages/*/test",
"test:core": "jest packages/lila-core/test"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.3.1",
"lerna": "^3.10.5",
"lint-staged": "^8.1.0",
"minimist": "^1.2.0",
"prettier": "^1.15.3",
"rd": "^2.0.1",
"rimraf": "^2.6.3",
"rollup": "^1.1.0",
"rollup-plugin-json": "^3.1.0",
"stylelint": "^9.9.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-standard": "^18.2.0"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"**/*.{css,less,scss,sass}": [
"stylelint --fix",
"prettier --write",
"git add"
],
"**/*.{html,md,json}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}