-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "borg-webapp",
"version": "1.0.0",
"description": "Yet another boilerplate?",
"main": "./bin/serve-app-prod",
"scripts": {
"test": "./bin/test-src",
"clean:css": "./bin/clean-css",
"compile:src": "./bin/compile-src",
"compile:sass": "./bin/compile-sass",
"watch:sass": "./bin/watch-sass",
"generate": "plop --plopfile ./generators/index.js",
"serve:dev": "./bin/serve-app-dev",
"serve:prod": "./bin/serve-app-prod",
"start": "./bin/serve-app-dev",
"copy-env": "touch .env && cat .env.example >> .env",
"clean": "rm -rf public && rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:ok-borg/web.git"
},
"keywords": [
"react",
"node",
"webpack",
"typescript",
"borg",
"ok-borg"
],
"author": "Anas Ait-Ali <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ok-borg/web/issues"
},
"homepage": "https://github.com/ok-borg/web#readme",
"dependencies": {
"@reactivex/rxjs": "^5.0.0-rc.1",
"axios": "^0.15.2",
"clean-css": "3.4.20",
"dotenv": "2.0.0",
"http-server": "0.9.0",
"lodash": "4.16.4",
"ramda": "^0.22.1",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"react-router-redux": "4.0.6",
"redux": "3.6.0",
"redux-logger": "2.6.1",
"redux-thunk": "2.1.0",
"typescript": "2.0.0"
},
"devDependencies": {
"favicons-webpack-plugin": "0.0.7",
"function-bind": "1.1.0",
"html-webpack-plugin": "2.24.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.8.0",
"node-sass": "3.8.0",
"nodemon": "1.10.0",
"phantomjs-prebuilt": "2.1.13",
"plop": "^1.5.0",
"stats-webpack-plugin": "0.4.0",
"ts-loader": "0.8.2",
"webpack": "1.13.1",
"webpack-dev-server": "1.16.2",
"webpack-notifier": "1.3.2"
}
}