-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "astroview",
"version": "1.0.0",
"main": "index.js",
"author": "Jon Yardley <jon.yardley@red-badger.com>",
"license": "MIT",
"dependencies": {
"aphrodite": "^2.2.1",
"fitsjs": "^0.6.6",
"gpu.js": "https://github.com/gpujs/gpu.js.git#1bb63042a06e29b91262a87160f405616de3301a",
"mobx": "^4.2.1",
"mobx-react": "^5.1.2",
"mobx-react-devtools": "^5.0.1",
"react": "^16.3.2",
"react-cursor-position": "^2.4.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"awesome-typescript-loader": "^5.0.0",
"copy-webpack-plugin": "^4.5.1",
"prettier": "^1.12.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0",
"typescript": "^2.8.3",
"uglify-js": "^3.3.28",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"start": "webpack-dev-server -d --inline --hot --colors --open --content-base public/",
"build": "webpack --mode=production",
"test": "echo 'TODO: Setup tests'",
"lint": "tslint src/**/*.ts{,x}"
}
}