-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "tradetrust-website",
"version": "1.0.0",
"description": "tradetrust website",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"test": "jest",
"test:coverage": "jest --coverage --watchAll=false",
"lint": "eslint . --ext .js --max-warnings 0",
"lint:fix": "eslint . --ext .js --fix",
"integration": "testcafe chrome src/**/*.spec.js",
"integration:headless": "testcafe chrome:headless src/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TradeTrust/tradetrust-website.git"
},
"author": "Sumit Chaudhari",
"license": "ISC",
"bugs": {
"url": "https://github.com/TradeTrust/tradetrust-website/issues"
},
"homepage": ".",
"dependencies": {
"@govtechsg/tradetrust-schema": "^1.0.7",
"bootstrap": "^4.3.1",
"debug": "^4.1.1",
"ethereumjs-util": "^6.1.0",
"ethers": "^4.0.33",
"lodash": "^4.17.15",
"penpal": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.6",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.0.1",
"redux": "^4.0.4",
"source-map-explorer": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"isomorphic-fetch": "^2.2.1",
"prettier": "^1.17.1",
"react-snapshot": "^1.3.0",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.8",
"testcafe": "^1.3.3",
"sinon": "^7.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}