-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.18 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
{
"name": "pace",
"version": "1.0.0",
"description": "Running pace calculator",
"main": "index.js",
"scripts": {
"clean:dist": "node_modules/.bin/rimraf dist",
"start": "webpack-dev-server --config webpack.config.js --env.dev",
"build": "node_modules/.bin/webpack --config webpack.config.js --env.prod",
"validate-webpack:dev": "webpack-validator webpack.config.js --env.dev",
"validate-webpack:prod": "webpack-validator webpack.config.js --env.prod",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"test": "jest --coverage",
"lint": "./node_modules/.bin/eslint src --ignore-path .gitignore"
},
"repository": {
"url": "https://github.com/joeegan/pace.git",
"type": "git"
},
"author": "Joe Egan",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeegan/pace/issues"
},
"homepage": "https://github.com/joeegan/pace",
"dependencies": {
"babel-runtime": "^6.9.2",
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-config-rackt": "^1.1.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.4.1",
"jest": "^15.1.1",
"lodash": "^4.16.3",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^1.3.0",
"react-test-renderer": "^15.3.2",
"rimraf": "^2.5.4",
"serviceworker-loader": "^0.1.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.17",
"webpack-dev-server": "^2.0.0-beta",
"webpack-validator": "^2.2.9"
}
}