-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.09 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
{
"name": "unqiuestudio-site-2018",
"version": "0.0.1",
"main": "index.html",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@types/classnames": "^2.2.6",
"@types/koa": "^2.0.46",
"@types/node": "^10.9.4",
"@types/reach__router": "^1.0.1",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"@types/react-slick": "^0.23.2",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-dynamic-import-node": "^2.1.0",
"babel-plugin-module-resolver": "^3.1.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"less-loader": "^4.1.0",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"parcel-bundler": "^1.10.0",
"style-loader": "^0.23.0",
"typescript": "^3.0.3",
"webpack": "^4.17.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11",
"webpack-manifest-plugin": "^2.0.3",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2",
"write-file-webpack-plugin": "^4.3.2"
},
"dependencies": {
"@mapbox/vector-tile": "^1.3.1",
"@reach/router": "^1.1.1",
"classnames": "^2.2.6",
"claygl": "^1.2.3",
"claygl-advanced-renderer": "git+https://github.com/pissang/claygl-advanced-renderer.git",
"geometry-extrude": "^0.1.1",
"koa": "^2.5.2",
"koa-nunjucks-2": "^3.0.2",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"less": "^3.8.1",
"lodash": "^4.17.19",
"lru-cache": "^4.1.3",
"normalize.css": "^8.0.0",
"nunjucks": "^3.1.3",
"pbf": "^3.1.0",
"polybooljs": "^1.2.0",
"quickhull3d": "^2.0.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-loadable": "^5.5.0",
"react-slick": "^0.23.1"
},
"scripts": {
"start": "parcel ./index.html",
"build": "parcel build ./index.html --public-url=./ --out-dir=build",
"client:dev": "run-p client:bundle-dev client:ssr-dev",
"client:ssr-dev": "cross-env BABEL_ENV=ssr NODE_ENV=development webpack --watch --config client/webpack.config.ssr.js",
"client:bundle-dev": "cross-env BABEL_ENV=client NODE_ENV=development webpack-dev-server --config client/webpack.config.dev.js",
"server:dev": "cross-env BABEL_ENV=server NODE_ENV=development nodemon --exec babel-node server/app.ts --extensions '.js,.ts,.tsx'",
"server:build": "corss-env BABEL_ENV=server NODE_ENV=production babel server --ignore server/public/ -D -d output/server --extensions '.ts,.tsx'"
}
}