-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.49 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.49 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
{
"version": "2.2.2",
"scripts": {
"dev:figma": "NODE_ENV=development DESIGN_TOOL=figma npx webpack --mode=development --watch",
"build:figma": "NODE_ENV=production DESIGN_TOOL=figma npx webpack --mode=production",
"dev:penpot": "NODE_ENV=development DESIGN_TOOL=penpot npx webpack --mode=development --watch & npx serve penpot --cors",
"build:penpot": "NODE_ENV=production DESIGN_TOOL=penpot npx webpack --mode=production",
"deploy:prod:penpot": "bun run build:penpot ; netlify deploy --prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-private-property-in-object": "^7.21.0",
"@babel/preset-env": "^7.23.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@basiclines/leo": "^0.6.4",
"core-js": "^3.33.0",
"netlify-cli": "^23.9.1",
"ua-parser-js": "^0.7.24",
"webpack-dev-server": "^4.15.1"
}
}