-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "bitcanvas",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "webpack serve",
"watch": "webpack --watch",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"format": "prettier --plugin-search-dir . --write .",
"requirements": "pip3 install -r contracts/requirements.txt",
"deploy": "gh-pages -d build",
"deploy-contract": "python3 -m contracts.deploy"
},
"dependencies": {
"algosdk": "^2.0.0",
"axios": "^1.3.0",
"bluebird": "^3.7.2",
"pixi.js": "^7.0.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.38",
"@webpack-cli/generators": "^3.0.1",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"node-polyfill-webpack-plugin": "^2.0.1",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4"
}
}