-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 977 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
35
36
37
38
39
40
{
"name": "logchimp",
"description": "A open-source software to track your customers feedback",
"version": "0.7.0-beta.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/logchimp/logchimp.git"
},
"bugs": {
"url": "https://github.com/logchimp/logchimp/issues"
},
"scripts": {
"start": "run-p server:start theme:start",
"server:dev": "pnpm --filter @logchimp/api dev",
"server:start": "pnpm --filter @logchimp/api start",
"theme:start": "run-s theme:build theme:serve",
"theme:build": "pnpm --filter @logchimp/theme build",
"theme:serve": "pnpm --filter @logchimp/theme serve --host",
"rome:format": "rome format --write ."
},
"dependencies": {
"@logchimp/api": "0.7.0-beta.0",
"dotenv": "16.0.3",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"nodemon": "2.0.20",
"rome": "11.0.0"
},
"keywords": [
"logchimp",
"feedback",
"open-source",
"codecarrot"
],
"engines": {
"node": ">=16 < 17"
}
}