-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 KB
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
{
"name": "@standardnotes/component-relay",
"version": "2.3.1",
"repository": {
"type": "git",
"url": "git://github.com/standardnotes/component-relay.git"
},
"main": "dist/dist.js",
"types": "dist/@types/ComponentRelay.d.ts",
"scripts": {
"build:docs": "typedoc",
"build:types": "tsc",
"build": "yarn run build:types && webpack --config webpack.prod.js",
"clean-cache:docs": "rm -rf node_modules/.cache/gh-pages",
"publish:docs": "gh-pages -b gh-pages -d docs",
"coverage": "yarn test --coverage --silent",
"lint": "eslint lib --ext .ts",
"lint:fix": "yarn run lint --fix",
"start": "webpack -w --config webpack.dev.js",
"noci:test": "jest"
},
"dependencies": {
"@standardnotes/common": "^1.43.0",
"@standardnotes/features": "1.54.0",
"@standardnotes/models": "1.34.3",
"@standardnotes/sncrypto-common": "1.13.0",
"@standardnotes/snjs": "2.147.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@types/jsdom": "^16.2.5",
"@types/node": "^14.14.6",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-loader": "^8.2.2",
"eslint": "^7.13.0",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"nock": "^13.0.5",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.30",
"typescript": "^4.0.5",
"uuid": "^8.3.2",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.3.0"
}
}