-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
91 lines (91 loc) · 2.46 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
{
"name": "autoresponsive-react",
"version": "1.2.3",
"description": "auto responsive grid layout library",
"keywords": [
"react",
"responsive",
"layout",
"layout component",
"ui component",
"ui",
"component"
],
"files": [
"dist/**/*.js",
"dist/**/*.css",
"index.d.ts"
],
"main": "dist/index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/xudafeng/autoresponsive-react.git"
},
"scripts": {
"dev": "webpack serve",
"dev:test": "cross-env NODE_ENV=test npm run dev",
"lint": "eslint src --fix",
"compile": "babel src/ --out-dir dist/ -D",
"build": "cross-env NODE_ENV=production webpack && npm run compile",
"prepublishOnly": "npm run build",
"test": "macaca run -d ./test",
"contributor": "git-contributor"
},
"dependencies": {
"autoresponsive-core": "^1.0.1",
"exenv": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@typescript-eslint/parser": "^6.9.1",
"babel-eslint": "^10.1.0",
"babel-loader": "8",
"babel-plugin-istanbul": "^6.1.1",
"bluebird": "^3.5.1",
"cross-env": "^5.1.1",
"css-loader": "^6.7.1",
"eslint": "7",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-egg": "^7.0.0",
"eslint-import-resolver-alias": "^1.1.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-compat": "^2.5.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^4.6.0",
"forkmeon.github.io": "1.1.15",
"git-contributor": "1",
"highlight.js": "^11.2.0",
"husky": "^1.3.1",
"json-loader": "^0.5.7",
"less": "^3.11.3",
"less-loader": "^6.2.0",
"macaca-cli": "2",
"macaca-playwright": "1",
"macaca-reporter": "1",
"macaca-wd": "3",
"marked": "^4.1.0",
"mini-css-extract-plugin": "^2.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-logo": "^1.0.15",
"typescript": "^5.2.2",
"webpack": "5",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}