-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
67 lines (67 loc) · 1.91 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
{
"name": "node-school-wallet-app",
"version": "1.0.0",
"description": "Приложение школы Node.js «Кошелёк»",
"author": "",
"scripts": {
"build": "webpack",
"tls:generate": "scripts/tls/generate.sh",
"start": "NODE_PATH=. node ./source/app.js",
"start:secure": "NODE_ENV=secure npm start",
"start:prod": "NODE_ENV=production npm start",
"watch": "NODE_PATH=. nodemon --watch source ./source/app.js",
"test": "NODE_PATH=. jest"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:rakchaev/node-school-app.git"
},
"license": "ISC",
"engines": {
"node": "^8.2"
},
"dependencies": {
"axios": "~0.19.0",
"config": "^1.27.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"lodash": "^4.17.4",
"mongoose": "^5.7.10",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"serialize-javascript": "^4.0.0"
},
"devDependencies": {
"antd": "^2.12.8",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-emotion": "^7.1.0",
"babel-plugin-import": "^1.4.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"card-info": "git+https://github.com/iniel/card-info.git",
"css-loader": "^0.28.7",
"emotion": "^7.2.0",
"emotion-server": "^7.3.2",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.1",
"ignore-loader": "^0.1.2",
"jest": "^21.2.1",
"log4js": "^2.3.4",
"moment": "^2.18.1",
"react-emotion": "^7.2.0",
"sinon": "^4.0.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5"
}
}