-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 999 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
{
"name": "parceldemo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"demo": "parcel ./demo/index.html",
"buildDemo": "parcel build ./demo/index.html && echo \"build finish!\"",
"react": "parcel ./reactDemo/index.html -d ./reactDist",
"buildReact": "parcel build ./reactDemo/index.html -d ./reactDist",
"vue": "parcel ./vueDemo/index.html -d ./vueDist",
"buildVue": "parcel build ./vueDemo/index.html -d ./vueDist",
"ts": "parcel ./ts/index.html -d ./tsDist",
"buildTs": "parcel build ./ts/index.html -d ./tsDist"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"node-sass": "^4.7.2",
"parcel": "^0.0.1",
"parcel-bundler": "^1.5.1",
"parcel-plugin-vue": "^1.5.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"typescript": "^2.7.1",
"vue": "^2.5.13"
}
}