-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
{
"name": "@aerisweather/react-mapsgl",
"version": "0.1.3",
"homepage": "https://www.aerisweather.com",
"license": "MIT",
"main": "dist/es6/index.js",
"module": "dist/esm/index.js",
"typings": "dist/es6/index.d.ts",
"scripts": {
"prebuild": "yarn run clean",
"build": "yarn lint && yarn test && yarn build:commonjs && yarn build:esm",
"build:commonjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig-esm.json",
"build:dev": "NODE_ENV='dev'; yarn build",
"build:watch": "tsc --watch",
"preci": "rm -fr node_modules",
"ci": "yarn install --frozen-lockfile",
"clean": "rm -rf ./dist",
"lint": "eslint src",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"prepublishOnly": "npm run clean && npm run build",
"prepush": "npm run build"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"peerDependencies": {
"@aerisweather/mapsgl": "^1.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@aerisweather/eslint-plugin": "^1.0.4",
"@aerisweather/mapsgl": "^1.3.0",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@tsconfig/node14": "^1.0.3",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"commitizen": "^4.3.0",
"cypress": "^12.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"jest": "^29.4.0",
"lint-staged": "^13.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.11",
"ts-jest": "^29.0.5",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
}
}