-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
41 lines (41 loc) · 1023 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
37
38
39
40
41
{
"name": "uncss-online",
"version": "0.2.0",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"now-dev": "now dev",
"now-build": "next build",
"build": "next build",
"start": "next start",
"deploy": "now",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:tsc": "tsc --noEmit",
"test": "yarn test:tsc && yarn build && start-server-and-test start http://localhost:3000 cypress:run"
},
"dependencies": {
"axios": "^0.27.2",
"clipboard": "^2.0.11",
"milligram": "1.4.1",
"next": "14.2.5",
"normalize.css": "^8.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"uncss": "0.16.2"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@types/react": "^18.3.0",
"autoprefixer": "^10.4.18",
"cssnano": "^5.1.12",
"cypress": "^10.3.0",
"postcss": "8.x.x",
"postcss-nested": "^5.0.6",
"prettier": "2.7.1",
"start-server-and-test": "^1.14.0",
"typescript": "^5.4.5"
}
}