-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "gcl-atom",
"main": "./lib/js/src/Main.bs.js",
"version": "0.0.0",
"description": "A short description of your package",
"keywords": [],
"scripts": {
"dev": "bsb -clean && bsb -make-world -w",
"build": "bsb -make-world && npx webpack --mode=production",
"rebuild": "rm -rf lib && npm run build && apm rebuild",
"update": "git pull && rm -rf node_modules && rm -f package-lock.json && npm install && npm run build && apm rebuild"
},
"activationCommands": {
"atom-text-editor": "gcl-atom:toggle"
},
"repository": "https://github.com/atom/gcl-atom",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"devDependencies": {
"webpack": "^5.0.0-beta.30",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"agda-mode-vscode": "github:banacorn/agda-mode-vscode#759355",
"bs-atom2": "^1.40.1",
"bs-platform": "^7.2",
"bs-webapi": "^0.15.3",
"guacamole": "github:scmlab/gcl-vscode#v0.0.3",
"reason-promise": "^1.0.1",
"reason-react": ">=0.7.0",
"reason-react-update": "^0.1.1"
},
"peerDependencies": {
"@glennsl/bs-json": "^5.0.1"
},
"resolutions": {
"**/react": "16.9.0",
"**/react-dom": "16.9.0"
}
}