-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.24 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
{
"name": "ksp-sortiment",
"version": "1.1.2",
"description": "Sortiment for the KSP T2 room",
"scripts": {
"build": "babel server -d build -s",
"build-production": "npm run build && webpack -p",
"start": "node index.js",
"dev": "DEV=1 babel-watch index.js",
"eslint": "eslint app server",
"migrate": "babel-node ./node_modules/.bin/knex -- migrate:latest",
"seeds": "babel-node ./node_modules/.bin/knex -- seed:run"
},
"repository": {
"type": "git",
"url": "https://github.com/kubik369/ksp-sortiment"
},
"author": "Jakub Šimo",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^6.2.10",
"babel-plugin-react-css-modules": "^1.1.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-watch": "^2.0.7",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.8.2",
"estraverse-fb": "^1.3.1",
"react-hot-loader": "^1.3.1",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.14.0"
},
"dependencies": {
"autoprefixer": "^6.5.3",
"axios": "^0.15.3",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"css-loader": "^0.26.1",
"diacritics": "^1.3.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^5.0.0",
"immutability-helper": "^2.1.2",
"knex": "^0.14.2",
"lodash": "^4.17.3",
"moment": "^2.17.1",
"multer": "^1.3.0",
"object-path-immutable": "^0.5.1",
"postcss-loader": "^1.2.0",
"prop-types": "^15.6.0",
"react": "^15.4.1",
"react-bootstrap": "0.32.4",
"react-css-modules": "^4.1.0",
"react-dom": "^15.4.1",
"react-list": "^0.8.0",
"react-notification-system": "^0.2.13",
"react-redux": "^4.4.6",
"react-spinner": "^0.2.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sqlite3": "^5.0.8",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
}
}