-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "crypto-orderbook-app",
"version": "1.0.0",
"description": "crypto-orderbook-app",
"repository": "https://github.com/rjhilgefort/crypto-orderbook-app",
"license": "MIT",
"scripts": {
"deploy": "run-s build deploy:now deploy:alias",
"deploy:now": "now --public",
"deploy:alias": "now alias",
"deploy:clean": "now rm crypto-orderbook-app --safe --yes",
"postinstall": "cp -n .env.example .env || true",
"start": "react-scripts-ts start",
"start:prod": "run-s build serve",
"build": "react-scripts-ts build",
"serve": "serve -s build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"dependencies": {
"dotenv": "^6.0.0",
"ramda": "^0.25.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-refetch": "^1.0.4",
"react-scripts-ts": "2.16.0",
"recharts": "^1.0.0-beta.10",
"recompose": "^0.27.1",
"sanctuary": "^0.15.0",
"sanctuary-def": "^0.18.1",
"semantic-ui-css": "^2.3.2",
"semantic-ui-react": "^0.81.3",
"styled-components": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^23.1.3",
"@types/node": "^10.5.1",
"@types/ramda": "^0.25.34",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/recharts": "^1.0.23",
"@types/recompose": "^0.26.1",
"@types/sanctuary": "^0.14.2",
"now": "^11.2.4",
"npm-run-all": "^4.1.3",
"serve": "^9.1.0",
"typescript": "^2.9.2"
}
}