-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
106 lines (106 loc) · 3.16 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "a-simple-gltf-viewer",
"version": "2.0.1",
"description": "Pre-configured boilerplate for Electron + React + TypeScript",
"main": "./docs/main.bundle.js",
"scripts": {
"start": "electron ./docs/main.bundle.js",
"dev": "rimraf docs && cross-env NODE_ENV=development webpack --watch --progress --colors",
"prod": "rimraf docs && cross-env NODE_ENV=production webpack --progress --colors",
"test": "mocha -r ts-node/register -r tsconfig-paths/register \"test/**/*.ts\"",
"build:win": "electron-builder build --win --x64",
"build:mac": "electron-builder build --mac --x64"
},
"build": {
"appId": "com.devtography.electron_boilerplate",
"productName": "Electron+React+TypeScript Boilerplate",
"directories": {
"app": "./docs/",
"output": "./out/"
},
"win": {
"target": "nsis",
"asar": false
},
"buildVersion": "1.0.0"
},
"author": "Wing Chau @Devtography",
"license": "MIT",
"dependencies": {
"@types/hammerjs": "^2.0.36",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/stats.js": "^0.17.0",
"antd": "^3.16.2",
"dat.gui": "^0.7.6",
"eventemitter3": "^3.1.0",
"gl-matrix": "^3.0.0",
"gltf-loader-ts": "^0.3.1",
"hammerjs": "^2.0.8",
"inversify": "^5.0.1",
"lodash.uniq": "^4.5.0",
"react": "^16.7.0",
"react-animations": "^1.0.0",
"react-dom": "^16.7.0",
"reflect-metadata": "^0.1.13",
"register-service-worker": "^1.6.2",
"regl": "^1.3.11",
"stats.js": "^0.17.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@types/dat.gui": "^0.7.2",
"@types/gl-matrix": "^2.4.5",
"@types/lodash.uniq": "^4.5.6",
"@types/mocha": "^5.2.5",
"@types/react-router": "^4.4.3",
"@types/react-router-dom": "^4.3.1",
"acorn": "^6.0.5",
"ajv": "^6.6.2",
"copy-pkg-json-webpack-plugin": "0.0.38",
"copy-webpack-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"electron": "^3.1.2",
"electron-builder": "^20.38.5",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"raw-loader": "^2.0.0",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.4",
"spectron": "^5.0.0",
"style-loader": "^0.23.1",
"ts-import-plugin": "^1.5.5",
"ts-loader": "^5.3.3",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^3.2.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"workbox-webpack-plugin": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoiver/a-simple-gltf-viewer"
},
"keywords": [
"Electron",
"React",
"Typescript",
"Webpack"
],
"bugs": {
"url": "https://github.com/xiaoiver/a-simple-gltf-viewer/issues"
},
"homepage": "https://github.com/xiaoiver/a-simple-gltf-viewer#readme"
}