-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "canva-childbook-ai",
"description": "An empty Canva App",
"engines": {
"node": "^18 || ^20.10.0",
"npm": "^9 || ^10"
},
"scripts": {
"start": "ts-node ./scripts/start/start.ts",
"build": "webpack --config webpack.config.cjs --mode production",
"lint:types": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier '**/*.{css,ts,tsx}' --no-config --write",
"format:check": "prettier '**/*.{css,ts,tsx}' --no-config --check --ignore-path",
"format:file": "prettier $1 --no-config --write",
"test": "jest --no-cache",
"test:watch": "jest --watchAll"
},
"keywords": [],
"author": "Canva Pty Ltd.",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"dependencies": {
"@canva/app-ui-kit": "^3.6.0",
"@canva/asset": "^1.7.0",
"@canva/design": "^1.9.0",
"@canva/error": "^1.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1"
},
"devDependencies": {
"@ngrok/ngrok": "^1.2.0",
"@svgr/webpack": "^8.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.2",
"@types/node-forge": "^1.3.1",
"@types/nodemon": "^1.19.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.18.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.2",
"css-loader": "^6.7.1",
"css-modules-typescript-loader": "^4.0.1",
"cssnano": "^6.0.1",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"eslint": "^8.57.0",
"jest": "^29.4.2",
"mini-css-extract-plugin": "^2.6.1",
"node-fetch": "^2.6.7",
"node-forge": "^1.3.1",
"nodemon": "3.1.0",
"postcss-loader": "^7.3.3",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.5",
"ts-jest": "^29.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"yargs": "^17.7.2"
}
}