-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "@axboot/datagrid",
"version": "1.4.7",
"jsnext:main": "dist/es6/index.js",
"module": "dist/es6/index.js",
"main": "dist/commonjs/index.js",
"repository": "https://github.com/axisj/axboot-datagrid",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:common": "ncp @axboot-datagrid/style.css ./dist/style.css",
"build:es5": "rimraf ./dist/commonjs && tsc --p tsconfigs/tsconfig.es5.json",
"build:es6": "rimraf ./dist/es6 && tsc --p tsconfigs/tsconfig.es6.json",
"build:library": "npm run build:common && npm run build:es5 && npm run build:es6",
"prepublishOnly": "npm run build:library",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@emotion/styled": "^11.10.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sortablejs": "^1.15.3",
"zustand": "4.4.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "18.7.13",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/sortablejs": "^1.15.8",
"@types/uuid": "^9.0.0",
"antd": "^5.14.2",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"less": "^4.1.3",
"ncp": "^2.0.0",
"next": "^12.2.5",
"next-with-less": "^2.0.5",
"prettier": "^2.7.1",
"typescript": "4.8.2",
"uuid": "^9.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}