-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
30 lines (30 loc) · 938 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
{
"name": "sigfox-platform",
"version": "1.0.0",
"description": "A real time platform to manage different devices and analytics.",
"keywords": [
"Platform",
"IoT",
"real-time"
],
"author": "Antoine de Chassey & Louis Moreau",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=10.15.2",
"npm": ">=6.4.1"
},
"scripts": {
"contributors:add": "all-contributors add",
"preinstall": "cd backend/ && yarn --frozen-lockfile && cd ../frontend && yarn --frozen-lockfile && cd ..",
"postinstall": "yarn build",
"build": "cd frontend/ && npm cache verify && yarn build && cd ..",
"start": "npm run serve",
"backend": "cd backend/ && node server/server.js && cd ..",
"frontend": "cd frontend/ && node server/server.ts && cd ..",
"primus": "cd primus/ && npm start && cd ..",
"test": "npm run install"
},
"devDependencies": {
"all-contributors-cli": "^6.20.0"
}
}