-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@smartface/component-calendar-dev",
"version": "3.0.0-beta.10",
"description": "Calendar Component",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:@babel/register --inspect ./test/**/*.test.js",
"test:watch": "mocha --watch --compilers js:@babel/register --debug ./test/**/*.test.js",
"build": "yarn run build:sf && yarn run build:tsc",
"build:tsc": "tsc --project tsconfig-build.json",
"build:sf": "rimraf ./component-calendar && cross-env transpiler --standalone --rootPath=.",
"build:dev": "rimraf ./scripts/node_modules/@smartface/component-calendar && tsc --project tsconfig-build.dev.json",
"dev": "babel ./src/services --out-dir -d ./scripts/services",
"docs:create": "jsdox ./src -o docs",
"replace:generated": "find ./scripts/generated/ -name '*.ts' | xargs sed -i 's|components|../../components|g'",
"jase": "jase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartface/sf-component-calendar.git"
},
"keywords": [
"javascript",
"mobile",
"styling",
"style"
],
"author": "Cenk Cetinkaya",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartface/sf-component-calendar/issues"
},
"homepage": "https://github.com/smartface/sf-component-calendar#readme",
"dependencies": {
"@smartface/builder": "^0.9.0",
"@smartface/marketplace-service": "^1.2.0-beta.5",
"moment": "^2.29.4",
"moment-hijri": "^2.1.1",
"rimraf": "^3.0.2",
"semver": "^5.3.0",
"typescript": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@babel/register": "^7.17.7",
"@smartface/dispatcher": "^0.9.0",
"@smartface/image-processor": "^1.2.6",
"@smartface/library-reader": "^0.9.0",
"@smartface/tsc-watch": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.1",
"cross-env": "^4.0.0",
"cz-conventional-changelog": "^2.0.0",
"cz-customizable": "^5.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^6.10.3",
"install": "^0.10.1",
"jase": "^1.2.0",
"jsdoc-to-markdown": "^4.0.1",
"jsdox": "^0.4.10",
"minimist": "^1.2.6",
"mocha": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"path": "./node_modules/cz-conventional-changelog",
"config": "./.cz-config.js"
}
}
}