-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "pekolanguage",
"version": "1.0.0",
"main": "index.js",
"author": "happou31 <[email protected]>",
"license": "MIT",
"scripts": {
"start": "parcel ./src/front/index.html",
"format": "eslint --fix './src/**/*.{ts,tsx}'",
"build": "parcel build ./src/front/index.html --public-url ."
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"recoil": "^0.0.10",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@types/node": "^14.0.20",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"parcel": "^1.12.4",
"prettier": "~1.19.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"browserslist": [
"since 2015"
]
}