-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 613 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 613 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
{
"dependencies": {
"@popperjs/core": "^2.6.0",
"bootstrap": "^5.0.0-beta1",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"requirejs": "^2.3.6"
},
"name": "bbp",
"version": "1.0.0",
"scripts": {
"start": "concurrently --kill-others \"npm run watch-sass\" \"npm run watch-tsc\"",
"watch-sass": "sass --watch app/styles/app.scss:app/styles/css/app.css",
"watch-tsc": "tsc --build app/tsconfig.json -w"
},
"author": "MRP",
"license": "ISC",
"description": "",
"devDependencies": {
"concurrently": "^5.3.0",
"sass": "^1.32.5",
"typescript": "^4.1.3"
}
}