-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
{
"name": "@iterable/sample-app",
"description": "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/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'"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@webpack-cli/serve": "^1.6.0",
"babel-loader": "^8.1.0",
"concurrently": "^6.3.0",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"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-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"axios": "^1.12.2"
}
}