-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 990 Bytes
/
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
{
"name": "key-code-tester",
"version": "1.0.0",
"description": "Display Key event info on screen",
"scripts": {
"lint": "eslint src/**.js",
"test": "#",
"build": "npm test && webpack -p",
"start": "webpack-dev-server -p"
},
"author": "javinor",
"repository": "git@github.com:javinor/key-code-tester.git",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.26.1",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.9",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.16.3"
},
"dependencies": {
"bootstrap": "^3.3.7",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}