-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.99 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
{
"name": "tycho",
"version": "1.0.1",
"private": true,
"homepage": "https://www.tycho.io",
"description": "A real-time, WebGL-based interactive simulation of our solar system.",
"author": {
"name": "Josh Shor",
"email": "jpshor@gmail.com",
"url": "https://www.josh.so/"
},
"bugs": {
"url": "https://github.com/jshor/tycho/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jshor/tycho.git"
},
"license": "MIT",
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/ --include-path src/",
"watch-css": "npm run build-css && npm run build-css --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "npm run build-css && react-scripts test --env=jsdom",
"test:coverage": "rimraf coverage && npm run build-css && react-scripts test --env=jsdom --coverage",
"deploy:upload": "s3-deploy './build/**' --cwd './build/' --bucket www.tycho.io",
"deploy:invalidate": "cf-invalidate -- E1MEFM58XJK3X1 *",
"deploy": "npm-run-all deploy:upload deploy:invalidate",
"lint": "eslint src/**/*.js src/**/*.jsx",
"lint:fix": "eslint --fix src/**/*.js src/**/*.jsx",
"ephemeris": "tycho-scripts -m ephemeris",
"orbitals": "tycho-scripts -m orbitals",
"prepush": "npm-run-all test:coverage lint"
},
"dependencies": {
"classnames": "2.2.5",
"deep-assign": "2.0.0",
"js-cookie": "2.2.0",
"keymirror": "0.1.1",
"moment": "^2.19.3",
"react": "15.6.1",
"react-animation-frame": "0.3.4",
"react-datetime": "2.10.1",
"react-dom": "15.6.1",
"react-markdown": "2.5.0",
"react-redux": "5.0.6",
"react-scripts": "1.0.13",
"react-slider": "0.9.0",
"react-three-renderer": "3.2.1",
"redux": "3.7.2",
"redux-thunk": "2.2.0",
"s3-deploy": "^0.10.0",
"three": "0.87.0",
"three-dom-label": "^0.1.7",
"three-orbit-controls": "82.1.0",
"tween.js": "16.6.0",
"webgl-detect": "^0.0.1"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"cloudfront-invalidate-cli": "^1.4.0",
"enzyme": "2.9.1",
"enzyme-to-json": "2.0.0",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"jest-cli": "21.0.2",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "4.1.2",
"react-test-renderer": "15.6.1",
"rimraf": "2.6.2",
"tycho-scripts": "^1.0.3",
"web-audio-mock": "^0.1.9"
},
"husky": {
"hooks": {
"pre-push": "npm run prepush"
}
}
}