-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "pxs",
"version": "0.0.1",
"description": "Pixelsorter web app",
"main": "src/index.tsx",
"repository": "https://github.com/OscarGit/pxs.git",
"author": "Oscar Persson <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack",
"serve": "webpack serve"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.0.0-alpha.14",
"rimraf": "^3.0.2",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"printWidth": 100
}
}