-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "elevio",
"license": "MIT",
"description": "This package contains the Elevio client install packages both in React and native npm module form.",
"keywords": [
"Elevio",
"elevio",
"elev",
"React"
],
"version": "1.3.8",
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.12",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/webpack": "^5.28.1",
"@types/webpack-dev-middleware": "^5.0.2",
"cypress": "^3.8.3",
"ejs": "^3.1.6",
"express": "^4.17.2",
"html-webpack-plugin": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"start-server-and-test": "^1.12.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0",
"webpack-dev-middleware": "^6.1.0",
"webpack-dev-server": "^4.15.0"
},
"scripts": {
"clean": "rm -f ./lib/*; rm -f ./esm/*",
"compile": "tsc --build ",
"compile:esm": "tsc --module ES2015 --outDir ./esm --target es2017",
"build": "npm run clean; npm run compile; npm run compile:esm",
"example-server": "ts-node ./examples/server.ts --project ./examples/tsconfig.json",
"cypress": "cypress run",
"ci": "start-server-and-test example-server 4000 cypress",
"prepublishOnly": "npm run build"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"prop-types": "^15.8.1"
},
"files": [
"lib/*",
"esm/*"
],
"main": "lib/index.js",
"module": "./esm/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./lib/index.js",
"default": "./esm/index.js"
},
"./esm/": "./esm/",
"./lib/": "./lib/"
},
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dixahq/elevio-client-packages"
}
}