-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.19 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
{
"name": "@cantinc/ui",
"version": "0.4.0-alpha.1",
"description": "UI components of innetjs",
"homepage": "https://cantinc.github.io/ui",
"author": "Mikhail Lysikov <[email protected]>",
"license": "MIT",
"main": "index.js",
"module": "index.es6.js",
"esnext": "index.es6.js",
"jsnext:main": "index.es6.js",
"types": "index.d.ts",
"private": true,
"scripts": {
"start": "innetjs start -i docs",
"build": "npm run build:ui && npm run build:docs",
"build:docs": "innetjs build -i docs",
"build:ui": "innetjs release",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"release": "innetjs release -p",
"patch": "innetjs patch",
"minor": "innetjs minor",
"major": "innetjs major"
},
"repository": {
"type": "git",
"url": "https://github.com/cantinc/ui.git"
},
"keywords": [
"UI",
"CANT inc.",
"front-end"
],
"bugs": {
"url": "https://github.com/cantinc/ui/issues"
},
"dependencies": {
"@cantinc/utils": "^1.4.2",
"@innet/dom": "^0.15.0-alpha.3",
"@innet/jsx": "^2.0.0-alpha.7",
"@watch-state/history-api": "^2.0.0-alpha.1",
"@textlint/ast-node-types": "^13.3.2",
"@textlint/markdown-to-ast": "^13.3.2",
"html-classes": "^2.0.2",
"innet": "^2.0.0-alpha.2",
"inputmask": "^5.0.8",
"prismjs": "^1.29.0",
"sync-timer": "^1.0.1",
"watch-state": "^3.5.0-alpha.2"
},
"devDependencies": {
"@types/inputmask": "^5.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/prismjs": "^1.26.0",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"core-js": "^3.29.1",
"eslint": "^8.37.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"innet-jest": "^1.3.5",
"innetjs": "^2.5.3",
"jest-scss-transform": "^1.0.3",
"typescript": "^5.1.3",
"web-scroll": "^1.1.0"
}
}