-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathpackage.json
107 lines (107 loc) · 3.34 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "canva-apps-sdk-starter-kit",
"description": "A boilerplate for creating Canva Apps.",
"engines": {
"node": "^18 || ^20.10.0",
"npm": "^9 || ^10"
},
"scripts": {
"start": "ts-node ./scripts/start/start.ts",
"extract": "formatjs extract \"src/**/*.{ts,tsx}\" --out-file dist/messages_en.json",
"build": "webpack --config webpack.config.ts --mode production && npm run extract",
"lint:types": "tsc",
"lint": "eslint .",
"lint:strict": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier '{examples,src,utils,scripts}/**/*.{css,ts,tsx,json,js,mjs}' --write",
"format:check": "prettier '{examples,src,utils,scripts}/**/*.{css,ts,tsx,json,js,mjs}' --check",
"format:file": "prettier $1 --no-config --write",
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watch",
"postinstall": "ts-node ./scripts/copy_env.ts"
},
"keywords": [],
"author": "Canva Pty Ltd.",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"workspaces": [
"./examples/*"
],
"dependencies": {
"@canva/app-i18n-kit": "^1.0.2",
"@canva/app-ui-kit": "^4.7.0",
"@canva/asset": "^2.1.0",
"@canva/design": "^2.3.0",
"@canva/error": "^2.1.0",
"@canva/platform": "^2.1.0",
"@canva/user": "^2.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "6.8.7"
},
"devDependencies": {
"@canva/cli": ">= 0.0.1-beta.13 < 0.0.2",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@formatjs/cli": "6.3.15",
"@formatjs/ts-transformer": "3.13.27",
"@ngrok/ngrok": "1.4.1",
"@svgr/webpack": "8.1.0",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@types/debug": "4.1.12",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "20.10.0",
"@types/node-fetch": "2.6.12",
"@types/node-forge": "1.3.11",
"@types/nodemon": "1.19.6",
"@types/prompts": "2.4.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/webpack-env": "1.18.5",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"chalk": "4.1.2",
"cli-table3": "0.6.5",
"css-loader": "7.1.2",
"css-modules-typescript-loader": "4.0.1",
"cssnano": "7.0.6",
"debug": "4.4.0",
"dotenv": "16.4.7",
"eslint": "9.18.0",
"eslint-plugin-formatjs": "5.2.8",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-unicorn": "56.0.1",
"exponential-backoff": "3.1.1",
"express": "4.21.2",
"express-basic-auth": "1.2.1",
"globals": "15.14.0",
"jest": "29.7.0",
"jest-css-modules-transform": "4.4.2",
"jest-environment-jsdom": "29.7.0",
"jsonwebtoken": "9.0.2",
"jwks-rsa": "3.1.0",
"mini-css-extract-plugin": "2.9.2",
"node-fetch": "3.3.2",
"node-forge": "1.3.1",
"nodemon": "3.0.1",
"open": "8.4.2",
"postcss-loader": "8.1.1",
"prettier": "3.4.2",
"prompts": "2.4.2",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.11",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"url-loader": "4.1.1",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.0",
"yargs": "17.7.2"
}
}