-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "@sqn/webinar-ramda",
"private": true,
"engines": {
"node": ">=10.10.0"
},
"license": "MIT",
"dependencies": {
"ramda": "^0.27.0",
"ramda-extension": "^0.10.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.3",
"babel-preset-react-union": "^0.15.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.0",
"eslint-config-react-union": "^0.15.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.12.3",
"eslint-plugin-react-hooks": "^2.3.0",
"esm": "^3.2.25",
"fs-extra": "^7.0.1",
"glob": "^7.1.2",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.0.3",
"nodemon": "^2.0.4",
"prettier": "^1.19.1",
"rimraf": "^2.6.3"
},
"scripts": {
"start": "nodemon -r esm src",
"debug": "nodemon --inspect -r esm src",
"test": "jest --passWithNoTests",
"lint": "yarn lint:js",
"lint:js": "eslint --cache --ignore-path .gitignore --ext .js ./",
"precommit": "lint-staged",
"prepush": "yarn lint && yarn test"
}
}