-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 774 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 774 Bytes
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
{
"name": "asturiashacking.github.io",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build && next export",
"export": "next build && next export",
"ci:test": "npm run test",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "next dev",
"start": "next build && next start",
"test": "start-server-and-test start http://localhost:3000 cy:run"
},
"dependencies": {
"@mdx-js/loader": "1.6.22",
"@next/mdx": "12.3.4",
"next": "12.3.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"cypress": "9.7.0",
"prettier": "2.8.8",
"start-server-and-test": "1.15.5"
},
"prettier": {
"proseWrap": "always",
"printWidth": 120
}
}