-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "propcss",
"author": "Vladislav Shkodin",
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/propcss.esm.js",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --target node",
"test": "tsdx test",
"lint": "tsdx lint src test example",
"prepare": "tsdx build --target node"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"devDependencies": {
"@types/babel__core": "7.1.3",
"@types/cssesc": "3.0.0",
"@types/jest": "24.9.0",
"@types/loader-utils": "1.1.3",
"@types/webpack": "4.41.2",
"@typescript-eslint/eslint-plugin": "2.16.0",
"@typescript-eslint/parser": "2.16.0",
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-config-react-app": "5.1.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-import-helpers": "1.0.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "2.3.0",
"husky": "4.0.10",
"tsdx": "0.12.3",
"tslib": "1.10.0",
"typescript": "3.7.5"
},
"dependencies": {
"@babel/core": "7.8.3",
"cssesc": "3.0.0",
"html-tags": "3.1.0",
"loader-utils": "1.2.3",
"postcss": "7.0.26",
"postcss-js": "2.0.3"
}
}