-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 675 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 675 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
{
"private": true,
"name": "pathman",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "concurrently \"nodemon\" \"npm start\"",
"start": "lite-server",
"format": "npx prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\""
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/classnames": "^2.2.10",
"@types/node": "^18.0.0",
"concurrently": "^8.2.2",
"lite-server": "^2.6.1",
"nodemon": "^3.1.0",
"rollup": "^4.12.0",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "^2.6.2"
}
}