-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "remix-profiler",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"bundle": "webpack",
"start": "webpack-dev-server",
"test": "jest",
"test:ci": "jest --runInBand --detectOpenHandles --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters=text-lcov | coveralls",
"tslint": "tslint -p . -c tslint.json",
"tslint:fix": "tslint --fix -p . -c tslint.json",
"prettier": "prettier --write 'src/**/*.{ts,js,json}'",
"check-formatting": "prettier --list-different 'src/**/*.{ts,ts,js,json}'",
"publish": "npm run bundle && surge --project ./dist --domain remix-gas-profiler.surge.sh"
},
"author": "Edson Alcalas",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.15",
"coveralls": "^3.0.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-junit": "^7.0.0",
"prettier": "^1.18.2",
"surge": "^0.21.3",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@remixproject/plugin": "^0.1.9",
"binarysearch": "^1.0.0",
"ethereum-types": "^2.1.4"
}
}