-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
95 lines (95 loc) · 3.57 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"version": "1.0.2",
"main": "index.js",
"author": "[email protected]",
"module": "index.js",
"name": "@overgear/yup-ast",
"description": "Yup AST generator",
"repository": "[email protected]:WASD-Team/yup-ast.git",
"scripts": {
"develop": "./develop.sh",
"build": "NODE_ENV=production webpack --progress --config webpack.config.js; yarn version; cp package.json dist",
"build:dev:once": "NODE_ENV=development webpack --progress --config webpack.config.js",
"build:dev": "NODE_ENV=development webpack -w --progress --config webpack.config.js",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watchAll --bail",
"test:inspect": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watchAll",
"precommit": "lint-staged",
"lint-js": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint-css": "stylelint \"src/**/*.{css,less,styl,scss,sass,sss}\"",
"lint": "yarn run lint-js && yarn run lint-css",
"fix-js": "yarn run lint-js --fix",
"fix-css": "yarn run lint-css --fix",
"fix": "yarn run fix-js && yarn run fix-css"
},
"lint-staged": {
"ignore": [
"package.json"
],
"linters": {
"*.{js,jsx}": [
"eslint --no-ignore --fix",
"git add --force"
],
"*.{json,md}": [
"prettier --write",
"git add --force"
],
"*.{css,less,styl,scss,sass,sss}": [
"stylelint --fix",
"git add --force"
]
}
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-node8": "^1.2.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"flat": "^4.1.0",
"idempotent-babel-polyfill": "^6.26.0",
"immutable": "^4.0.0-rc.9",
"lodash": "^4.17.10",
"md5-jkmyers": "^0.0.1",
"nano-equal": "^2.0.2",
"nanoid": "^1.2.3",
"object-hash": "^1.3.0",
"ramda": "^0.25.0",
"reselect": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.2",
"yup": "^0.26.6"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-with-prettier": "^4.2.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-css-modules": "^2.7.5",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"ignore-styles": "^5.0.1",
"jest": "^23.6.0",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^7.2.0",
"prop-types": "^15.6.2",
"webpack-command": "^0.4.1"
}
}