-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.13 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@storn/core",
"version": "0.2.9",
"description": "Modern, fast, powerful javascript async storage",
"repository": {
"type": "git",
"url": "https://github.com/altiore/storn"
},
"keywords": [
"storage",
"state",
"manager",
"state",
"browser",
"state"
],
"scripts": {
"start": "npm run test",
"build:common": "cd packages/common && tsc -p tsconfig.json",
"build:store": "cd packages/store && tsc -p tsconfig.json",
"build": "npm run build:common && npm run build:store",
"p": "lerna publish",
"f": "lerna publish --force-publish",
"t": "npm run lint && npm run build && npm run test:ci",
"test": "karma start",
"test:ci": "karma start --autoWatch=false --singleRun=true",
"lint": "tsc --noEmit && prettier --write \"**/*.{js,jsx,ts,tsx,json,yml}\" && prettier --write \"**/*.md\" --use-tabs=false && eslint . --fix --ext .js,.jsx,.ts,.tsx --max-warnings=3",
"lint:ci": "tsc --noEmit && prettier --check \"**/*.{js,jsx,ts,tsx,json,yml}\" && prettier --check \"**/*.md\" --use-tabs=false && eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=3",
"prepublish": "npm run build",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7.14.8",
"@babel/eslint-parser": "7.14.7",
"@babel/plugin-proposal-decorators": "7.17.12",
"@babel/preset-env": "7.18.0",
"@babel/preset-react": "7.17.12",
"@types/chai": "4.3.1",
"@types/enzyme": "3.10.12",
"@types/karma": "6.3.3",
"@types/karma-coverage-istanbul-reporter": "2.1.1",
"@types/mocha": "9.1.1",
"@types/node": "16.4.9",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"babel-loader": "8.2.5",
"babel-plugin-istanbul": "6.1.1",
"chai": "4.3.6",
"chai-spies": "1.0.0",
"chai-spies-augment": "2.1.0",
"enzyme": "3.11.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-ordered-imports": "0.5.0",
"eslint-plugin-prettier": "3.4.1",
"gh-pages": "3.2.3",
"husky": "7.0.4",
"idb": "7.0.1",
"karma": "6.3.20",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"karma-webpack": "5.0.0",
"lerna": "^5.3.0",
"lint-staged": "11.2.6",
"memoize-one": "6.0.0",
"mocha": "9.2.2",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"sinon": "13.0.2",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"ts-loader": "9.3.0",
"ts-node": "10.8.0",
"tsc-alias": "1.6.7",
"typescript": "4.4.3",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings=3"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix --max-warnings=3"
],
"*.{json,yml}": [
"prettier --write"
],
"*.{md}": [
"prettier --write --use-tabs=false"
]
},
"author": {
"name": "Pavel Belik",
"email": "i@pavel-i-tel.ru",
"url": "https://github.com/Razzwan"
},
"dependencies": {}
}