-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 2.01 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ektep-crowdsource-platform",
"version": "1.0.0",
"description": "This will hold the crowdsourcing platform to be used to store voice data from various speakers",
"main": "server.js",
"scripts": {
"dev": "cd crowdsource-fe && npm run dev",
"start": "cd crowdsource-api && npm start",
"watch": "watch:nodemon",
"watch:nodemon": "cd crowdsource-api && npm run watch",
"start-cluster": "cd crowdsource-api && pm2 start src/server.js -i 2",
"test": "cd crowdsource-api && npm run test",
"test:api": "cd crowdsource-api && npm run test",
"functional_test": "cd functional_tests && npm run test",
"db-migrate": "cd crowdsource-api && npx db-migrate up --config migrations/config/migration_config.json -e dev",
"prepare": "husky install",
"install": "run-p install:api install:ft install:fe",
"install:api": "cd crowdsource-api && npm i",
"install:ft": "cd functional_tests && npm i",
"install:fe": "cd crowdsource-fe && npm i",
"preinstall": "npx npm-force-resolutions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekstep2/ektep-crowdsource-platform.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ekstep2/ektep-crowdsource-platform/issues"
},
"homepage": "https://github.com/ekstep2/ektep-crowdsource-platform#readme",
"engines": {
"node": "14.17.5"
},
"lint-staged": {
"crowdsource-fe/**/*.{js,jsx,ts,tsx,json,html,scss,css,md}": [
"prettier --config ./.prettierrc --write"
]
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"del": "^5.1.0",
"glob-parent": "^5.1.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-when": "^3.2.1",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"yargs": "^16.2.0"
},
"dependencies": {
"config": "^3.3.6",
"npm-force-resolutions": "0.0.10"
},
"resolutions": {
"glob-parent": "5.1.2"
}
}