-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name": "xiv-copywrite-stamp",
"version": "1.0.0",
"main": "index.js",
"author": "himanoa <matsunoappy@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.7",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@blueprintjs/core": "^3.37.0",
"@blueprintjs/icons": "^3.24.0",
"nanoevents": "^5.1.10",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"scripts": {
"start": "webpack serve -c webpack.config.dev.js",
"check": "tsc --noEmit --watch",
"build": "webpack build -c webpack.config.prod.js",
"deploy": "gh-pages -d dist",
"prettier": "prettier --write src/**/*.tsx src/*.tsx src/**/*.ts src/*.ts"
}
}