-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.23 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
{
"name": "qljs",
"version": "0.2.5",
"description": "UI Data Query Language on top of ReactJS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"test:cover": "jest --collectCoverage",
"prepare": "install-peers"
},
"keywords": [
"query",
"language",
"react",
"ui"
],
"homepage": "https://github.com/Nek/qljs#readme",
"bugs": {
"url": "https://github.com/Nek/qljs/issues"
},
"author": "Nikita Dudnik",
"license": "MIT",
"eslintConfig": {
"extends": "react-app",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
]
}
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@types/jest": "^24.0.22",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.7",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-react-app": "^5.0.2",
"eslint-loader": "^3.0.2",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"jsdom-global": "^3.0.2",
"prettier": "^1.19.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"yargs": "^14.2.0"
},
"peerDependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"dependencies": {
"install-peers-cli": "^2.1.1"
}
}