-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 KB
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
{
"name": "trans-ui",
"version": "0.0.1",
"description": "User Interface for Prozen Transform",
"main": "dist/main.js",
"author": "jfoltz",
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"dev": "webpack -d source-map -w"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/react": "^16.9.38",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^10.0.33",
"babel-watch": "^7.5.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.9.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"axios": "^0.21.1",
"react-router-dom": "^5.2.0"
}
}