forked from common-voice/sentence-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.22 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
63
{
"name": "sentence-collector",
"version": "0.0.1",
"description": "A web console for collecting and validating sentences",
"license": "MIT",
"engines": {
"node": ">=10.12.0"
},
"scripts": {
"env": "env $(grep -v '^#' .env | xargs)",
"clean": "rm -rf dist .cache",
"reset": "yarn clean && rm -rf node_modules yarn.lock && yarn",
"start": "yarn clean && yarn env parcel web/index.pug",
"build": "yarn clean && parcel build --no-cache web/index.pug --public-url .",
"build:server": "yarn clean && parcel build -t \"node\" scripts/db-helper.js",
"build:generator": "yarn clean && parcel build -t \"node\" scripts/generate-cv-metadata.js",
"lint": "eslint shared web scripts",
"db-helper": "yarn build:server && yarn env node dist/db-helper",
"init-db": "yarn db-helper init",
"flush-db": "yarn db-helper flush",
"list-db": "yarn db-helper list",
"generate-cv": "yarn build:generator && yarn env node dist/generate-cv-metadata.js",
"deploy": "yarn build && gh-pages -d dist",
"run-prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d",
"test": "yarn lint && yarn build"
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"connected-react-router": "^4.4.1",
"es6-promisify": "^6.0.0",
"hash.js": "^1.1.5",
"iso-639-1": "^2.0.3",
"kinto": "^12.1.1",
"kinto-http": "^4.5.3",
"parcel-plugin-txt": "^1.0.2",
"progress": "^2.0.1",
"react": "^15.5.4 || ^16.0.0",
"react-dom": "^16.4.1",
"react-redux": "^4.4.8 || ^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^3.6.0 || ^4.0.0",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"talisman": "^0.21.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"babel-eslint": "^10.0.1",
"btoa": "^1.2.1",
"eslint": "5.6.1",
"gh-pages": "^2.0.1",
"kinto-node-test-server": "^1.0.2",
"node-fetch": "^2.1.2",
"parcel-bundler": "^1.10.2",
"parcel-plugin-eslint": "^1.0.4",
"parcel-plugin-markdown": "mikehenrty/parcel-plugin-markdown#upgrade-asset",
"pug": "^2.0.3"
}
}