-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.5 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": "@contentstack/app-sdk",
"version": "2.1.1",
"types": "dist/src/index.d.ts",
"description": "The Contentstack App SDK allows you to customize your Contentstack applications.",
"main": "dist/index.js",
"repository": "https://github.com/contentstack/app-sdk",
"scripts": {
"prepublish": "npm run build",
"build": "webpack",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage --coverageDirectory=\"coverage\"",
"dev": "webpack --watch --mode development",
"lint": "eslint . --ext .ts --max-warnings=0",
"docs": "typedoc",
"prettier": "npx prettier src --check",
"prettier:fix": "npx prettier src --write",
"lint:fix": "eslint --fix",
"prepare": "npm run build && husky install",
"format": "npm run prettier:fix && npm run lint:fix",
"generate:sri": "node ./subresourceIntegrity.js",
"generate:readme": "npm run build && npm run generate:sri && npx @appnest/readme generate"
},
"keywords": [],
"author": {
"name": "Contentstack",
"url": "https://www.contentstack.com/"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@types/chai": "^4.2.22",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^9.1.0",
"chai": "^4.3.4",
"css-loader": "^5.2.2",
"eslint": "^8.7.0",
"eslint-plugin-only-warn": "^1.1.0",
"husky": "^8.0.0",
"jest": "^27.3.1",
"lint-staged": "^13.2.3",
"react": "^17.0.2",
"slate": "^0.72.3",
"ts-jest": "^27.0.7",
"ts-loader": "^8.1.0",
"ts-node": "^10.3.0",
"typedoc": "^0.22.18",
"typedoc-plugin-rename-defaults": "^0.6.5",
"typescript": "^4.4.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"jsonfile": "^6.1.0",
"loader-utils": "^3.2.1",
"post-robot": "^8.0.31",
"ssri": "^12.0.0",
"wolfy87-eventemitter": "^5.2.9"
},
"files": [
"dist"
],
"lint-staged": {
"src/**/*.{ts,css,md}": [
"npm run prettier:fix ",
"npm run lint:fix"
]
}
}