-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.34 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
{
"name": "algorithm-playground",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Dustin Schau <[email protected]> (https://dustinschau.com)",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"build": "webpack --env.environment production",
"markdown": "md-magic",
"format": "prettier \"src/**/*.js\" \"*.js\" --single-quote --write",
"start": "webpack-dev-server --env.environment development --port 8000",
"test": "jest"
},
"devDependencies": {
"@babel/core": "~7.0.0-beta.31",
"@babel/plugin-transform-runtime": "~7.0.0-beta.32",
"@babel/preset-env": "~7.0.0-beta.31",
"@babel/preset-flow": "~7.0.0-beta.31",
"@babel/preset-react": "~7.0.0-beta.31",
"@babel/preset-stage-2": "~7.0.0-beta.31",
"babel-7-jest": "~21.3.1",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-polished": "~1.1.0",
"compression-webpack-plugin": "~1.0.1",
"css-loader": "~0.28.7",
"extract-text-webpack-plugin": "~3.0.2",
"file-loader": "~1.1.5",
"flow-bin": "~0.59.0",
"flow-typed": "~2.2.3",
"html-webpack-plugin": "~2.30.1",
"husky": "~0.14.3",
"jest": "~21.2.1",
"lint-staged": "~5.0.0",
"markdown-magic": "~0.1.19",
"name-all-modules-plugin": "~1.0.1",
"offline-plugin": "~4.8.4",
"prettier": "~1.8.2",
"raw-loader": "~0.5.1",
"style-loader": "~0.19.0",
"uglifyjs-webpack-plugin": "~1.0.1",
"webpack": "~3.8.1",
"webpack-config-assign": "~1.0.0",
"webpack-dev-server": "~2.9.4",
"worker-loader": "~1.1.0"
},
"dependencies": {
"acorn": "~5.2.1",
"babel-plugin-emotion": "~8.0.10",
"babel-runtime": "~6.26.0",
"buble": "~0.16.0",
"codemirror": "~5.31.0",
"emotion": "~8.0.10",
"emotion-theming": "~8.0.10",
"escodegen": "~1.9.0",
"history": "~4.7.2",
"lodash.camelcase": "~4.3.0",
"lodash.debounce": "~4.0.8",
"lz-string": "~1.4.4",
"normalize.css": "~7.0.0",
"polished": "~1.9.0",
"proxy-polyfill": "~0.1.7",
"query-string": "~5.0.1",
"react": "~16.0.0",
"react-dom": "~16.0.0",
"react-emotion": "~8.0.10",
"react-icons": "~2.2.7",
"react-redux": "~5.0.6",
"redux": "~3.7.2",
"typeface-bitter": "~0.0.44",
"typeface-montserrat": "~0.0.45"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
}
}