-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "recipes-app",
"version": "1.0.0",
"description": "A simple recipe manager.",
"main": "dist/index.js",
"scripts": {
"start": "serve ./dist -s",
"build": "rollup -c -w",
"buildstyles": "sass src/styles/index.scss dist/index.css -w",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.1.0",
"chai": "^4.3.7",
"jest": "^29.5.0",
"mocha": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.6.1",
"rollup": "^3.4.0",
"sass": "^1.56.1",
"ts-jest": "^29.1.0"
},
"dependencies": {
"serve": "^14.2.0"
}
}