-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 955 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
35
36
{
"name": "onruntime",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"docker:build": "docker build . -t onruntime-website",
"docker:run": "docker run -p 3000:3000 onruntime-website"
},
"dependencies": {
"is_js": "^0.9.0",
"moment": "^2.29.1",
"next": "^12.0.8",
"next-seo": "^6.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remixicon": "^4.0.0",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@types/node": "20.16.11",
"@types/react": "17.0.4",
"@types/react-dom": "17.0.3",
"@types/styled-components": "5.1.32",
"babel-plugin-styled-components": "^2.0.0",
"eslint": "^8.52.0",
"eslint-config-antoine": "^1.0.13",
"prettier": "^3.0.3",
"typescript": "^5.0.0"
},
"license": "MIT"
}