-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 989 Bytes
/
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
{
"name": "raycastjs",
"author": {
"name": "Aldriê Mizobuti"
},
"license": "MIT",
"scripts": {
"dev": "concurrently --kill-others \"yarn dev:webpack\" \"yarn start\"",
"dev:webpack": "webpack --watch --mode=development",
"start": "live-server public",
"build": "webpack --mode=production",
"lint": "eslint src --ext .js,.ts"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-typescript": "^7.13.0",
"@types/stats.js": "^0.17.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"concurrently": "^6.0.2",
"live-server": "^1.2.1",
"stats.js": "^0.17.0"
}
}