-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "my-new-figma-plugin",
"description": "Built with figma plugin starter for Vue",
"version": "1.0.0",
"author": "",
"license": "MIT",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"watch": "webpack --mode=development --watch"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"vue": "^2.6.11",
"vue-resource": "^1.5.1",
"vuex": "^3.1.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.1",
"css-loader": "^3.4.2",
"file-loader": "^4.3.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.1",
"sass-loader": "^7.3.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"vue-loader": "^15.9.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}