-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "carpo-extension",
"version": "0.0.0",
"description": "carpo extension and vscode extension",
"main": "packages/carpo-redspot/build/index.js",
"repository": "https://github.com/patractlabs/carpo-extension.git",
"author": "patractlabs",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"resolutions": {
"typescript": "^4.3.5",
"webpack": "5.41.1"
},
"scripts": {
"build": "yarn clean && yarn build:browser && yarn build:extension",
"build:extension": "NODE_ENV=production yarn polkadot-dev-build-ts",
"build:browser": "cd packages/carpo-redspot && NODE_ENV=production yarn polkadot-exec-webpack --config webpack.browser.js --mode production",
"clean": "yarn polkadot-dev-clean-build && rimraf packages/carpo-redspot/dist",
"lint": "polkadot-dev-run-lint"
},
"devDependencies": {
"@ant-design/icons": "^4.6.4",
"@patract/dev": "^0.5.21",
"@types/node": "14.x",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/styled-components": "^5.1.14",
"@types/vscode": "^1.59.0",
"antd": "^4.16.13",
"babel-plugin-import": "^1.13.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redspot": "^0.11.8",
"rimraf": "^3.0.2",
"styled-components": "^5.3.1"
}
}