-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
78 lines (78 loc) · 2.11 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
{
"name": "@papercups-io/storytime",
"version": "1.0.7",
"description": "Track and record user sessions",
"repository": {
"type": "git",
"url": "git+https://github.com/papercups-io/storytime.git"
},
"author": "[email protected]",
"license": "MIT",
"scripts": {
"start": "parcel watch src/global.ts --out-file dist/global.js",
"tsc": "tsc",
"build:global": "parcel build src/global.ts --out-file dist/global.js --no-source-maps",
"build:types": "tsc --declaration true --emitDeclarationOnly true --declarationDir dist",
"build": "rollup -c",
"clean": "rm -rf dist",
"prepare": "npm run build && npm run build:global && npm run build:types"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"unpkg": "dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"files": [
"dist/*"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/phoenix": "^1.5.0",
"@types/superagent": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"eslint": "^7.3.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"lint-staged": "^10.2.11",
"localStorage": "1.0.4",
"parcel": "1.12.3",
"prettier": "^2.0.5",
"rollup": "^2.18.2",
"sinon": "9.0.2",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json}": "prettier --write",
"*.ts": [
"eslint -c .eslintrc.ts.js --fix",
"tsc"
]
},
"bugs": {
"url": "https://github.com/papercups-io/storytime/issues"
},
"homepage": "https://github.com/papercups-io/storytime#readme",
"dependencies": {
"phoenix": "^1.5.6",
"rrweb": "^0.9.7",
"superagent": "^6.1.0"
}
}