-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "button-group",
"version": "0.0.1",
"description": "button-group",
"scripts": {
"start": "webpack serve --mode development --env development",
"watch": "webpack --watch",
"format": "prettier --write .",
"lint": "eslint \"**/*.ts\"",
"prebuild": "npm run format",
"pretest": "npm run lint",
"build": "webpack",
"webpack-prod": "npm run pretest && npm run test-ci && webpack --env production",
"test": "echo no tests",
"test-ci": "echo no tests"
},
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@webpack-cli/serve": "^1.3.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"html-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^1.3.5",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@fluentui/web-components": "^0.14.0",
"@microsoft/fast-element": "^0.22.2",
"@microsoft/fast-foundation": "^1.14.0"
},
"engines": {
"node": ">=10.13.0"
}
}