-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.35 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.35 KB
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
64
65
66
67
68
69
{
"name": "daheim-app",
"version": "1.0.0-dev",
"private": true,
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.2",
"babel-jest": "^14.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.5.2",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-watch": "^2.0.2",
"better-npm-run": "0.0.11",
"bunyan": "^1.8.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"concurrently": "^2.0.0",
"css-loader": "^0.24.0",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-jsx": "^3.0.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-loader": "^0.4.3",
"jest-cli": "^14.1.0",
"json-loader": "^0.5.4",
"lerna": "2.0.0-beta.30",
"node-sass": "^3.7.0",
"raw-loader": "^0.5.1",
"react": "^15.4.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^4.0.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^0.14.1"
},
"scripts": {
"dev-db": "docker-compose -f docker-compose-mongodb.yml up mongodb",
"dev-live": "cd packages/daheim-app-live && npm run dev",
"dev-api": "cd packages/daheim-app-api && npm run dev",
"dev-ui": "cd packages/daheim-app-ui && npm run dev",
"dev": "concurrently --kill-others --names \"db,live,api,ui,model,utils\" --prefix \"[{name}]\" \"npm run dev-db\" \"npm run dev-live\" \"npm run dev-api\" \"npm run dev-ui\" \"npm --prefix packages/daheim-app-model run dev\" \"npm --prefix packages/daheim-app-utils run dev\"",
"crowdin-build": "better-npm-run crowdin-build",
"crowdin-download": "better-npm-run crowdin-download",
"crowdin-upload": "better-npm-run crowdin-upload",
"postinstall": "lerna bootstrap"
},
"betterScripts": {
"crowdin-build": {
"command": "bin/crowdin --build"
},
"crowdin-download": {
"command": "bin/crowdin --download"
},
"crowdin-upload": {
"command": "bin/crowdin --upload"
}
}
}