-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.61 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
76
77
78
79
80
81
82
{
"name": "tebukuro-client",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">= 6.0"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./styles --include-path ./node_modules ./styles/App.scss -o ./styles",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./styles --include-path ./node_modules --watch ./styles/style.scss ./styles/style.css",
"start-js": "next -p 4000",
"start": "npm-run-all -p watch-css start-js",
"start:prod": "next start",
"test": "npm run lint && npm run flow && npm run jest",
"jest": "jest",
"jest:watch": "npm run jest -- --watch",
"lint": "eslint . --cache",
"flow": "flow",
"build": "next build && next export"
},
"dependencies": {
"@material/list": "^0.39.1",
"@material/react-button": "^0.4.2",
"@material/react-fab": "^0.4.2",
"@material/react-material-icon": "^0.4.2",
"@material/react-select": "^0.4.2",
"@material/react-text-field": "^0.4.2",
"@material/react-top-app-bar": "^0.4.2",
"@zeit/next-css": "^1.0.1",
"axios": "^0.16.2",
"immutable": "^3.8.2",
"lodash": "^4.17.4",
"moment": "^2.22.1",
"moment-timezone": "^0.5.17",
"next": "^7.0.2",
"normalizr": "^3.2.4",
"path-match": "^1.2.4",
"path-to-regexp": "^2.1.0",
"react": "^16.3.0-alpha.2",
"react-dom": "^16.3.0-alpha.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"validatorjs": "^3.14.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-plugin-transform-define-file": "^1.3.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.13.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.40.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.0",
"flow-bin": "^0.72.0",
"jest": "^23.6.0",
"moxios": "^0.4.0",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.3",
"react-test-renderer": "^16.5.2",
"redux-mock-store": "^1.5.3",
"regenerator-runtime": "^0.12.1"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/config/jest/setup.js"
}
}