-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.98 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "Autodesk-Forge.github.io",
"description": "A place for Autodesk Forge samples.",
"repository": {
"type": "git",
"url": "https://github.com/Autodesk-Forge/Autodesk-Forge.github.io.git"
},
"bugs": {
"url": "https://github.com/Autodesk-Forge/Autodesk-Forge.github.io/issues"
},
"author": "Shiya Luo, Augusto Goncalves, Cyrille Fauvel",
"contributors": [
"Shiya Luo <[email protected]>",
"Augusto Goncalves <[email protected]>",
"Cyrille Fauvel <[email protected]>"
],
"license": "MIT",
"private": false,
"engines": {
"node": ">= 6.3.1",
"npm": ">= 3.10.3"
},
"scripts": {
"dev": "rm -f dist/* && if [ -f index.html ]; then rm index.html; fi && cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"prod": "rm -f dist/* && if [ -f index.html ]; then rm index.html; fi && cross-env NODE_ENV=production webpack && mv dist/index.html .",
"clean": "rm -f dist/* && if [ -f index.html ]; then rm index.html; fi",
"analyze": "cross-env NODE_ENV=production webpack --json | webpack-bundle-size-analyzer",
"modules": "cross-env NODE_ENV=production webpack stats --display-modules --display-chunks --display-origins"
},
"dependencies": {
"forever": "^0.15.3",
"http-server": "^0.9.0",
"jquery": "^3.1.1",
"js-search": "^1.3.7",
"owl.carousel": "^2.2.0",
"vue": "^2.2.1",
"vue-highlightjs": "^1.1.0",
"vue-resource": "^1.2.1",
"vue-router": "^2.3.0"
},
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"cross-env": "^3.2.3",
"css-loader": "^0.26.2",
"ejs": "^2.5.6",
"eslint": "^3.17.0",
"eslint-config-google": "^0.7.1",
"eslint-config-standard": "^7.0.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.3",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"inline-svg-loader": "^0.0.1",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"node-sass": "^4.5.0",
"optimize-js-plugin": "0.0.4",
"postcss-color-rebeccapurple": "^2.0.1",
"postcss-loader": "^1.3.3",
"progress-bar-webpack-plugin": "^1.9.3",
"resolve-url-loader": "^2.0.2",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"vue-hot-reload-api": "^2.0.11",
"vue-html-loader": "^1.2.4",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.2.1",
"webpack": "^2.2.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0"
},
"optionalDependencies": {}
}