Files
daedalOS/package.json

39 lines
1.0 KiB
JSON
Raw Normal View History

2021-01-02 21:48:42 -08:00
{
"name": "x",
"version": "2.0.0",
"description": "Desktop environment in the browser.",
"scripts": {
2021-01-02 22:14:16 -08:00
"dev": "next dev",
"build": "next build",
"start": "next start",
2021-01-02 23:30:32 -08:00
"eslint": "eslint .",
2021-01-02 21:48:42 -08:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DustinBrett/x.git"
},
"author": "Dustin Brett",
2021-01-02 22:14:16 -08:00
"license": "MIT",
"dependencies": {
"next": "10.0.4",
"react": "17.0.1",
2021-01-02 22:31:29 -08:00
"react-dom": "17.0.1",
"sass": "^1.32.0"
2021-01-02 22:59:33 -08:00
},
"devDependencies": {
"@types/node": "^14.14.19",
"@types/react": "^17.0.0",
2021-01-02 23:30:32 -08:00
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
2021-01-02 22:59:33 -08:00
"typescript": "^4.1.3"
2021-01-02 22:14:16 -08:00
}
2021-01-02 21:48:42 -08:00
}