This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 4.03 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "nekoboard",
"version": "1.4.2",
"description": "Online whiteboard made for tabletop role-play games.",
"main": "lib/server/index.js",
"scripts": {
"clean": "rimraf dist lib",
"build": "run-p -l -s build:*",
"build:babel": "babel -d lib src",
"build:webpack": "webpack -c --progress",
"lint": "run-p -l -s lint:*",
"lint:modules": "eslint --color -c ./eslint/modules.yml --ignore-pattern __tests__ --ignore-pattern __mocks__ src **/*.babel.js",
"lint:scripts": "eslint --color -c ./eslint/scripts.yml --ignore-pattern src --ignore-pattern **/*.babel.js .",
"lint:jest": "eslint --color -c ./eslint/jest.yml src/**/__tests__/**/*.js src/**/__mocks__/**/*.js",
"start": "node .",
"test": "run-p -l -s lint:* test:*",
"test:jest": "jest --colors --coverage src",
"version": "update-changelog && git add CHANGELOG.md",
"watch": "run-p -l -s watch:*",
"watch:build-babel": "npm run -s build:babel -- -w",
"watch:build-webpack": "npm run -s build:webpack -- -w",
"watch:lint-modules": "chokidar --silent --initial src/**/*.js src/**/*.jsx -i src/**/__tests__/**/* src/**/__mocks__/**/* -c \"npm run -s lint:modules\"",
"watch:lint-jest": "chokidar --silent --initial src/**/__tests__/**/*.js src/**/__mocks__/**/*.js -c \"npm run -s lint:jest\"",
"watch:lint-scripts": "chokidar --silent --initial ./**/*.js -i node_modules/**/* -i src/**/* -i dist/**/* -i lib/**/* -c \"npm run -s lint:scripts\"",
"watch:start": "nodemon -w lib -d 3 -x \"npm start\"",
"watch:test": "chokidar --silent --initial src/**/*.js -c \"npm run -s test -- --notify\"",
"production": "run-s -l clean lint:* test build:* prod:*",
"prod:webpack": "cross-env NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ukatama/nekoboard.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ukatama/nekoboard/issues"
},
"homepage": "https://github.com/ukatama/nekoboard#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-jest": "^14.1.0",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chokidar-cli": "^1.2.0",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"jest-cli": "^14.1.0",
"nodemon": "^1.10.0",
"npm-run-all": "^2.3.0",
"pug": "^3.0.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.2",
"update-changelog": "^1.0.1",
"webpack": "^1.13.1"
},
"dependencies": {
"bluebird": "^3.3.0",
"color": "^0.11.1",
"config": "^1.19.0",
"connect-livereload": "^0.5.4",
"dom-storage": "^2.0.2",
"express": "^4.13.4",
"google-material-color": "^1.2.6",
"immutable": "^3.8.1",
"knex": "^0.21.5",
"lodash": "^4.2.0",
"log4js": "^6.4.0",
"material-ui": "^0.15.0",
"react": "^15.3.0",
"react-color": "^2.0.0",
"react-dom": "^15.0.1",
"react-redux": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"redis": "^3.1.1",
"redux": "^3.1.2",
"redux-actions": "^0.10.1",
"sanitize.css": "^4.0.0",
"socket.io": "^2.4.0",
"socket.io-client": "^1.4.5",
"source-map-support": "^0.4.0",
"why-did-you-update": "0.0.8"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"node",
"jsx"
],
"moduleNameMapper": {
"^.+\\.(css|styl)$": "<rootDir>/jest/styleMock.js"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/bluebird",
"<rootDir>/node_modules/immutable",
"<rootDir>/node_modules/lodash",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-test-renderer",
"<rootDir>/node_modules/react-addons-test-utils"
]
}
}