-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "graydr-react",
"version": "0.0.1",
"description": "Front-end for MaKing Grading Great (perhaps for the first time)",
"main": "index.js",
"repository": "https://github.com/tyjet/graydr-react.git",
"author": "David Diner <nejiogrsnklweioh@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.prod.js",
"lint": "eslint \"$@\"",
"precommit": "lint-staged",
"start": "webpack-dev-server --config webpack.dev.js --progress",
"start:prod": "yarn build && NODE_ENV=production node ./server/index.js",
"test": "xvfb-run karma start"
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"express": "^4.16.2",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.1",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.1"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"lint-staged": "^5.0.0",
"webpack-dev-server": "^2.9.4"
}
}