-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.43 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.43 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
70
71
72
73
74
75
76
77
{
"name": "bike-rack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build:server && node ./lib/index.js",
"build:server": "gulp build",
"build-prod": "npm run clean && NODE_ENV=production webpack --config ./webpack.config.js --progress",
"build": "npm run clean:dist && NODE_ENV=build webpack --config ./webpack.config.js --progress",
"serve": "npm run clean:dist && NODE_ENV=development webpack-dev-server --config ./webpack.config.js --progress",
"clean:dist": "gulp clean:dist",
"clean:lib": "gulp clean:lib",
"compile": "gulp compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Ken Aguilar <piq9117@gmail.com>",
"license": "MIT",
"devDependencies": {
"@piq9117/write-file": "^1.0.1-beta",
"@types/node": "^7.0.15",
"@types/ramda": "^0.0.9",
"@types/react": "^15.0.23",
"@types/react-dom": "^15.5.0",
"@types/react-redux": "^4.4.40",
"@types/react-router": "^4.0.6",
"@types/react-router-dom": "^4.0.4",
"@types/redux": "^3.6.0",
"@types/socket.io": "^1.4.29",
"@types/socket.io-client": "^1.4.29",
"@types/systemjs": "^0.20.2",
"awesome-typescript-loader": "^3.1.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"casual": "^1.5.12",
"concurrently": "^3.4.0",
"css-loader": "^0.28.1",
"del": "^2.2.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"gulp": "^3.9.1",
"gulp-sequence": "^0.4.6",
"gulp-typescript": "^3.1.6",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"postcss-loader": "^1.3.3",
"raw-loader": "^0.5.1",
"scss-loader": "^0.0.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.17.0",
"typescript": "^2.3.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"data.either": "^1.5.0",
"immutable": "^3.8.1",
"ramda": "^0.23.0",
"ramda-fantasy": "^0.8.0",
"ramda-lens": "^0.1.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux-observable": "^0.14.1",
"rxjs": "^5.3.1",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"uuid": "^3.0.1"
}
}