-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
{
"name": "flutter-internationalize",
"displayName": "flutter-internationalize",
"description": "Flutter internationalizing tools",
"version": "0.2.0",
"publisher": "apin",
"author": "Apin Prastya <apin.klas@gmail.com> (https://lekapin.com)",
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.36.0"
},
"repository": {
"type": "git",
"url": "https://github.com/apinprastya/flutter-internationalize"
},
"bugs": {
"url": "https://github.com/apinprastya/flutter-internationalize/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.open"
],
"main": "./dist/main.js",
"contributes": {
"commands": [
{
"command": "extension.open",
"title": "Flutter Internationalize : Open"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --env.production",
"test": "node ./test/runTest.js",
"start": "webpack --watch --config ./webpack.config.js --mode development --env.development",
"build": "webpack --config ./webpack.config.js --env.production"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.36.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"eslint": "^5.13.0",
"glob": "^7.1.4",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mocha": "^6.1.4",
"react-scripts": "^3.0.1",
"typescript": "^3.3.1",
"vscode-test": "^1.0.2",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@ant-design/dark-theme": "^0.2.2",
"@babel/polyfill": "^7.4.4",
"antd": "^3.20.7",
"core-js": "^3.1.4",
"js-loader": "^0.1.1",
"react": "^16.8.6",
"react-data-grid": "^6.1.0",
"react-dom": "^16.8.6",
"react-resizable": "^1.8.0",
"regenerator-runtime": "^0.13.3",
"xlsx": "^0.15.0"
}
}