-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2 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": "lls-web-recorder",
"version": "1.0.4",
"description": "",
"main": "./lib",
"scripts": {
"build:lib": "babel src --out-dir lib && NODE_ENV=production webpack --config webpack.config.js",
"build:example": "NODE_ENV=production webpack --config webpack.example.config.js",
"build": "npm run clean && npm run build:lib && npm run build:example && del-cli dist/assets/*.worker.js",
"clean": "del-cli dist lib -f",
"prepublishOnly": "npm run build",
"start": "webpack-dev-server --config webpack.example.config.js",
"eslint-fix": "node_modules/.bin/eslint --fix src",
"precommit": "lint-staged"
},
"keywords": [],
"author": "Y--p--Y",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/lingochamp/OnlineScorer-Web.git"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-cli": "^6.24.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.28.7",
"del-cli": "^1.1.0",
"eslint": "^3.19.0",
"eslint-config-xo-react": "^0.14.0",
"eslint-config-xo-space": "^0.16.0",
"eslint-plugin-react": "^7.5.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.8",
"react-hot-loader": "^3.0.0",
"sass-loader": "^6.0.6",
"shipit-cli": "^3.0.0",
"shipit-deploy": "^2.4.0",
"shipit-utils": "^1.4.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"worker-loader": "^1.1.0"
},
"dependencies": {
"axios": "^0.15.3",
"md5": "^2.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}