-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "hellena",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/paikka/hellena.git",
"license": "MIT",
"scripts": {
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"test": "cross-env BABEL_ENV=test jest --config=jest.config.js"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.8",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run lint"
}
}
}