-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 794 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 794 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
{
"name": "purdueio-frontend",
"version": "0.0.1-alpha",
"description": "",
"private": true,
"scripts": {
"publish": "webpack --mode=production",
"build": "webpack --mode=development",
"watch": "webpack --watch --mode=development",
"serve": "serve -s",
"dev": "concurrently --kill-others \"npm run watch\" \"npm run serve\"",
"test": "jest"
},
"author": "Hayden McAfee <hayden@outlook.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"concurrently": "^6.2.2",
"jest": "^27.2.2",
"serve": "^14.2.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
}
}