-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 3.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "snapshot",
"version": "0.0.0-development",
"description": "",
"main": "Pulumi.ts",
"scripts": {
"test": "jest",
"build": "concurrently -c blue,green -n TYPESCRIPT,GATSBY 'tsc -p .' 'gatsby build'",
"develop": "gatsby develop -H 0.0.0.0",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "concurrently -c blue,green -n SERVER,FRONT 'npm run serve' 'npm run develop'",
"serve": "DOTENV_CONFIG_PATH=.env.development nodemon --watch src/entities --watch src/server.ts -e ts,json --exec 'ts-node -r dotenv/config.js' src/server",
"clean": "gatsby clean",
"version": "tsc -p .",
"migrate": "DOTENV_CONFIG_PATH=.env.development ts-node -r dotenv/config.js ./node_modules/node-pg-migrate/bin/node-pg-migrate -j ts -m src/migrations -d CONNECTION_STRING",
"production": "./node_modules/node-pg-migrate/bin/node-pg-migrate -m lib/migrations -d CONNECTION_STRING up && NODE_ENV=production node lib/server.js"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src/"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss|gif|ttf|eot|svg)$": "<rootDir>/src/__mocks__/files.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/snapshot.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/decentraland/snapshot/issues"
},
"homepage": "https://github.com/decentraland/snapshot#readme",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@snapshot-labs/snapshot.js": "^0.1.11",
"axios": "^0.24.0",
"decentraland-gatsby": "^3.49.0",
"dotenv": "^8.2.0",
"eth-crypto": "1.6.0",
"gatsby": "^2.32.11",
"gatsby-image": "^3.1.0",
"gatsby-plugin-image": "^1.1.1",
"gatsby-plugin-intl": "^0.3.3",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sass": "^4.1.0",
"gatsby-plugin-sharp": "^2.14.3",
"gatsby-plugin-typescript": "^2.12.1",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-sharp": "^2.12.1",
"keccak": "^3.0.1",
"markdown-escape": "^1.1.0",
"node-pg-migrate": "^4.8.0",
"numeral": "^2.0.6",
"pg": "^7.18.2",
"rc-slider": "^9.7.4",
"react-infinite-scroller": "^1.2.4",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"slug": "^4.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^26.0.23",
"@types/lodash.omit": "^4.5.6",
"@types/node": "^14.14.35",
"@types/numeral": "^2.0.1",
"@types/slug": "^0.9.1",
"@types/validator": "^13.1.3",
"concurrently": "^6.0.0",
"decentraland-gatsby-deploy": "^1.9.4",
"devcert": "1.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"postcss-assets": "^5.0.0",
"postcss-svg": "^3.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
}
}