-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.75 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
{
"name": "planning-poker-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "webpack-dev-server --config webpack.dev.config.js",
"test": "echo \"No test specified\" && exit 0",
"lint": "eslint src/**/*.js",
"run-build": "webpack -p --config webpack.prod.config.js",
"report": "echo \"No report specified\" && exit 0",
"preinstall": "npm run lint",
"postinstall": "npm run run-build",
"build": "npm run lint && npm test && npm run run-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awapps/planning-poker-ui.git"
},
"keywords": [],
"author": "André Eberhardt and William Martins",
"license": "MIT",
"bugs": {
"url": "https://github.com/awapps/planning-poker-ui/issues"
},
"homepage": "https://github.com/awapps/planning-poker-ui#readme",
"dependencies": {
"basscss": "^8.0.2",
"basscss-background-colors": "^2.1.0",
"express": "^4.14.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.7.0"
},
"devDependencies": {
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.24.0",
"ejs-loader": "^0.3.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"html-webpack-plugin": "^2.22.0",
"postcss-loader": "^0.11.1",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.1",
"sw-precache-webpack-plugin": "^0.4.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
},
"engines": {
"node": "6.x.x"
}
}