This repository was archived by the owner on Jan 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.27 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ttt",
"version": "0.1.0",
"private": true,
"main": "index.js",
"module": "src/index.js",
"dependencies": {
"@types/react-redux": "^6.0.11",
"@types/reactstrap": "^6.4.3",
"aphrodite": "^2.2.3",
"babel-core": "6",
"babel-preset-react-app": "^3.1.1",
"babel-runtime": "^6.23.0",
"bn.js": "4.11.8",
"bootstrap": "^4.1.3",
"ethers": "^4.0.18",
"file-loader": "^2.0.0",
"firebase": "^5.7.0",
"fmg-core": "0.1.6",
"fmg-simple-adjudicator": "0.1.6",
"fork-ts-checker-webpack-plugin": "0.4.9",
"html-webpack-plugin": "2.29.0",
"lodash": "^4.17.11",
"magmo-devtools": "https://github.com/magmo/devtools",
"node-sass": "^4.11.0",
"object-hash": "^1.3.1",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "^3.0.0",
"precss": "^3.1.2",
"react": "16.6.3",
"react-dev-utils": "^5.0.1",
"react-dom": "16.6.3",
"react-loader-spinner": "^2.3.0",
"react-redux": "^6.0.0",
"react-sidebar": "^3.0.2",
"reactstrap": "^6.5.0",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"redux-saga-firebase": "^0.14.1",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.1",
"style-loader": "0.19.0",
"sw-precache-webpack-plugin": "0.11.4",
"truffle": "4.1.14",
"ts-loader": "^2.3.7",
"ts-node": "^7.0.1",
"tsconfig-paths-webpack-plugin": "^2.0.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.10.0",
"tslint-react": "^3.2.0",
"typescript-eslint-parser": "^17.0.1",
"uglifyjs-webpack-plugin": "^1.1.8",
"url-loader": "^1.1.2",
"web3-detect-network": "^0.0.17",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4",
"webpack-manifest-plugin": "1.3.2"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).(j|t)s?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|ts|tsx)$"
],
"moduleFileExtensions": [
"web.ts",
"ts",
"web.tsx",
"tsx",
"web.js",
"js",
"web.jsx",
"jsx",
"json",
"node",
"mjs"
]
},
"babel": {
"presets": [
"react-app"
]
},
"config": {
"deploymentNetwork": "ropsten"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"test": "run-s test:truffle 'test:app --all'",
"test:app": "node scripts/test.js --env=jsdom",
"test:truffle": "node scripts/test_truffle.js",
"test:ci": "run-s test:truffle 'test:app --all --ci'",
"storybook": "start-storybook -p 9001 -c .storybook",
"truffle:migrate": "npx deploy-contracts",
"ganache:start": "npx start-ganache"
},
"devDependencies": {
"@babel/runtime": "^7.0.0-beta.53",
"@storybook/react": "4.0.11",
"@types/jest": "^23.3.1",
"@types/storybook__react": "4.0.0",
"awesome-typescript-loader": "5.2.1",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"css-loader": "2.0.0",
"dotenv": "6.1.0",
"ganache-cli": "6.2.1",
"jest": "23.6.0",
"npm-run-all": "4.1.3",
"ts-jest": "23.10.4",
"typescript": "3.1.6"
}
}