-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.17 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
{
"name": "crypto-lab",
"version": "0.1.0",
"description": "A playground for crypto research and project tracking",
"author": "Steven Salka <steven@ssalka.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ssalka/crypto-lab"
},
"engines": {
"node": "^8.9.0",
"npm": "^5.5.1"
},
"scripts": {
"dev": "NODE_PATH=. nodemon --config config/nodemon.json",
"lint": "tslint -c config/tslint.json -p tsconfig.json -t stylish",
"lint:all": "npm run lint -- 'src/**/*.ts{,x}' 'test/**/*.ts{,x}'",
"start": "NODE_PATH=. ts-node -P config/tsconfig.server.json index",
"test": "NODE_ENV=test NODE_PATH=. jest -c config/jest.json --noStackTrace"
},
"dependencies": {
"@material-ui/core": "^1.2.0",
"@material-ui/icons": "^1.1.0",
"airtable": "^0.5.4",
"bind-decorator": "^1.0.11",
"body-parser": "^1.18.2",
"coinmarketcap-api": "^1.1.0",
"cookie-parser": "^1.4.3",
"cryptocompare": "^0.5.0",
"express": "^4.16.3",
"lodash": "^4.17.10",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"redux-observable": "^1.0.0",
"rxjs": "^6.2.1",
"ts-node": "^7.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.10",
"@types/express": "^4.11.1",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.108",
"@types/node": "^8.10.10",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^5.0.20",
"@types/react-router-dom": "^4.2.7",
"@types/uuid": "^3.4.3",
"copy-webpack-plugin": "^4.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"fork-ts-checker-webpack-plugin": "^0.4.2",
"jest": "^23.2.0",
"node-fetch": "^2.1.2",
"nodemon": "^1.17.3",
"ts-jest": "^23.0.0",
"ts-loader": "^3.5.0",
"tslint": "^5.10.0",
"tslint-consistent-codestyle": "^1.13.1",
"tslint-eslint-rules": "^5.3.1",
"tslint-loader": "^3.6.0",
"tslint-react": "^3.6.0",
"typescript": "^2.9.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
}
}