-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.77 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
{
"version": "0.0.19",
"name": "@mappable-world/mappable-default-ui-theme",
"description": "Mappable Maps JS API 3.0 example @mappable-world/mappable-default-ui-theme",
"types": "./dist/types/index.d.ts",
"main": "./dist/esm/index.mjs",
"scripts": {
"test": "jest",
"lint": "eslint ./",
"build": "npm run build:prod && npm run build:esm",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"build:esm": "ESM_BUILD=true webpack --mode=production --node-env=production",
"examples": "mappable-cli example --input=example --output=dist/example --readmeFile=example/README.md --templateFile=example/index.html",
"watch": "webpack --watch",
"start": "webpack serve",
"bump": "npm version patch --no-git-tag-version && npm run bump:git",
"bump:git": "git add --all && git commit -m \"New version $npm_package_version\" && git tag $npm_package_version && git push --tags origin HEAD:main",
"sync-figma": "npm run sync-icons && npm run sync-colors",
"sync-icons": "node -r dotenv/config -r ts-node/register ./tools/scripts/sync-icons.ts",
"sync-colors": "node -r dotenv/config -r ts-node/register ./tools/scripts/sync-colors.ts"
},
"devDependencies": {
"@mappable-world/mappable-cli": "^0.0.36",
"@mappable-world/mappable-types": "^0.0.21",
"@types/got": "9.6.12",
"@types/jest": "29.5.3",
"@types/jsdom": "21.1.1",
"@types/lodash": "^4.17.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"autoprefixer": "^10.4.19",
"cross-fetch": "4.0.0",
"css-loader": "6.8.1",
"dotenv": "16.3.1",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"figma-api": "^1.11.0",
"got": "^11.8.6",
"html-webpack-plugin": "^5.5.3",
"i18next": "^23.14.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.6.1",
"jsdom": "22.1.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.1",
"nanospinner": "^1.1.0",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"postcss-nested": "^6.0.1",
"prettier": "3.0.0",
"style-loader": "3.3.3",
"svgo": "^3.2.0",
"terser-webpack-plugin": "5.3.9",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"ts-node": "^10.9.2",
"typescript": "5.1.6",
"vue": "^3.4.21",
"webpack": "5.88.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"license": "Apache-2"
}