forked from decentraland/decentraland-dapps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.32 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
{
"name": "decentraland-dapps",
"version": "0.0.0-development",
"main": "dist",
"dependencies": {
"@types/flat": "0.0.28",
"@types/node": "^10.1.2",
"@types/react": "^16.4.7",
"@types/react-intl": "^3.0.0",
"@types/react-redux": "^6.0.4",
"@types/redux-storage-engine-localstorage": "^1.1.0",
"@types/segment-analytics": "0.0.28",
"@types/uuid": "^3.4.3",
"axios": "^0.19.0",
"date-fns": "^1.29.0",
"flat": "^4.1.0",
"react-intl": "^3.12.0",
"redux-persistence": "^1.2.0",
"redux-persistence-engine-localstorage": "^1.0.0",
"redux-storage-decorator-filter": "^1.1.8",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.10.0",
"typesafe-actions": "^2.0.3",
"web3x-codegen": "^4.0.6",
"web3x-es": "^4.0.6"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --project tsconfig.json",
"contracts": "web3x-codegen",
"test": "nyc mocha --require ts-node/register --project ./tsconfig.json src/**/*.spec.ts src/**/**/*.spec.ts",
"test:watch": "npm test -- --watch --watch-extensions ts",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"dcl-tslint-config-standard": "^1.0.1",
"decentraland-ui": "^2.18.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"prettier": "^1.10.2",
"react": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-saga": "^1.0.3",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.24",
"ts-node": "^7.0.0",
"tslint-language-service": "^0.9.9",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.5.2",
"validate-commit-message": "^3.0.1"
},
"peerDependencies": {
"decentraland-ui": ">=2.0.0",
"react": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-saga": "^1.0.3"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"semi": false
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/decentraland-dapps.git"
}
}