-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
60
61
62
63
64
{
"name": "practice-javascript",
"version": "2.2.0",
"author": "Jakob Anderson",
"license": "MIT",
"main": "index.js",
"engines": {
"node": "8"
},
"scripts": {
"build": "webpack",
"serve": "npm run build && ./node_modules/.bin/http-serve ./public",
"deploy": "./node_modules/.bin/firebase deploy",
"lint": "standard",
"start": "webpack-dev-server",
"yolo": "npm run build && npm run deploy"
},
"standard": {
"globals": [
"React"
]
},
"dependencies": {
"chai": "^3.5.0",
"konami-js": "0.0.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^6.2.0",
"babel-plugin-h-children-fix": "^1.1.0",
"babel-plugin-transform-react-jsx": "^6.2.0",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.2.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.23.0",
"dedent": "^0.7.0",
"eslint-config-standard-react": "^1.2.1",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.8.5",
"firebase-tools": "^3.9.1",
"hjs-webpack": "^5.1.0",
"http-serve": "^1.0.1",
"json-loader": "^0.5.4",
"local-links": "^1.4.0",
"pjs-problems": "^3.0.4",
"postcss-loader": "^0.8.0",
"pwa-manifest-webpack-plugin": "^1.0.5",
"script-loader": "^0.6.1",
"standard": "^5.4.1",
"style-loader": "^0.13.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"sw-precache-webpack-plugin": "^0.11.3",
"url-loader": "^0.5.9",
"vdom-as-json": "^1.0.8",
"vdom-serialized-patch": "^1.0.2",
"vdom-to-html": "^2.2.0",
"vdom-virtualize": "^1.0.1",
"virtual-dom": "^2.1.1",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.5",
"worker-loader": "^0.7.0"
}
}