-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.64 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.64 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
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
{
"name": "@iterable/react-sample-app",
"description": "React-based Sample app for Iterable Web SDK",
"version": "0.0.1",
"homepage": "https://iterable.com/",
"repository": {
"type": "git",
"directory": "https://github.com/Iterable/iterable-web-sdk/react-example"
},
"engines": {
"node": ">= 18.12.0"
},
"author": "Iterable",
"license": "MIT",
"private": true,
"keywords": [
"javscript",
"iterable sdk",
"typescript"
],
"scripts": {
"build": "tsc && webpack",
"start": "concurrently \"tsc -w --pretty\" \"webpack-dev-server\" -n 'tsc,webpack' -k",
"test": "jest --config jest.config.js",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"src/**/*.js\"",
"typecheck": "tsc --noEmit true --emitDeclarationOnly false",
"lint": "eslint . --ext '.ts,.tsx'",
"cypress": "cypress open",
"bundle-stats": "webpack --profile --json > stats.json",
"webpack-analyze": "yarn bundle-stats && webpack-bundle-analyzer stats.json",
"playwright": "playwright",
"playwright:ui": "playwright test --ui",
"playwright:debug": "playwright test --debug",
"playwright:install": "playwright install"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.9.0",
"@playwright/test": "^1.56.1",
"@types/jest": "^28.1.1",
"@types/node": "^12.12.6",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@webpack-cli/serve": "^1.6.0",
"babel-loader": "^9.1.3",
"concurrently": "^6.3.0",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.28.0",
"eslint-webpack-plugin": "3.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mini-css-extract-plugin": "^2.5.2",
"prettier": "^2.2.1",
"ts-jest": "^28.0.8",
"typescript": "^4.6.4",
"webpack": "^5.104.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"axios": "^1.12.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.2.1",
"styled-components": "^5.3.3",
"uuid": "^9.0.0"
}
}