-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 984 Bytes
/
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": "jsx-editor",
"productName": "JSX Live Editor",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "poi --serve",
"build": "poi --prod",
"deploy": "npm run build && surge -d jsx.surge.sh -p dist"
},
"author": {
"name": "EGOIST",
"email": "[email protected]"
},
"postcss": {
"plugins": {
"postcss-nested": {}
}
},
"devDependencies": {
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^4.0.0",
"babel-preset-env": "^1.7.0",
"poi": "^12.0.0-beta.8",
"postcss-nested": "^2.1.2",
"vue": "^2.5.17",
"vue-template-compiler": "^2.5.17"
},
"dependencies": {
"@babel/standalone": "^7.0.0",
"axios": "^0.16.2",
"cm-highlight": "^0.1.1",
"codemirror": "^5.28.0",
"normalize.css": "^7.0.0",
"nprogress": "^0.2.0",
"vue-cm": "^1.1.0",
"vue-router": "^2.7.0"
}
}