forked from featurevisor/featurevisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "featurevisor",
"private": true,
"version": "0.0.0",
"description": "Feature management for developers",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"format": "lerna run format",
"lint": "lerna run lint",
"format:fix": "lerna run format:fix",
"lint:fix": "lerna run lint:fix"
},
"author": {
"name": "Fahad Heylaal",
"url": "https://fahad19.com"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.4.2",
"lerna": "^6.5.0",
"prettier": "^2.8.8",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "5.76",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.15.1"
}
}