-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.43 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.43 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
{
"name": "resoc-netlify-image-engine",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"delete-out": "rimraf out",
"mkdir-out": "make-dir out",
"copy-templates": "cpy --parents resoc-templates out",
"copy-public": "cpy public/* out",
"build-templates-list": "ts-node src/build/build-templates-list.ts",
"bundle": "webpack --mode production",
"build": "npm run delete-out && npm run mkdir-out && npm run build-templates-list && npm run copy-templates && npm run copy-public && npm run bundle",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Resocio/resoc-netlify-image-engine.git"
},
"keywords": [
"resoc"
],
"author": "Philippe Bernard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Resocio/resoc-netlify-image-engine/issues"
},
"homepage": "https://github.com/Resocio/resoc-netlify-image-engine#readme",
"dependencies": {
"@netlify/functions": "^0.7.2",
"@resoc/core": "^0.8.5",
"@resoc/ui": "^0.8.5",
"axios": "^0.23.0",
"bootstrap": "^5.1.1",
"chrome-aws-lambda": "^10.1.0",
"copy-text-to-clipboard": "^3.0.1",
"mustache": "^4.2.0",
"puppeteer-core": "^10.2.0",
"react": "^17.0.2",
"react-bootstrap": "^2.0.0-rc.1",
"react-dom": "^17.0.2",
"recursive-copy": "^2.0.13",
"styled-components": "^5.3.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/aws-lambda": "^8.10.84",
"@types/jest": "^27.0.2",
"@types/mustache": "^4.1.2",
"@types/node": "^16.10.9",
"@types/react": "^17.0.31",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.15",
"@types/uuid": "^8.3.1",
"babel-loader": "^8.2.3",
"cpy-cli": "^3.1.1",
"jest": "^27.3.1",
"make-dir-cli": "^3.0.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}