-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.46 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
{
"name": "NumberRush",
"version": "1.0.0",
"description": "Number based game for learning German numbers",
"scripts": {
"start": "node server.js",
"lint": "eslint ./assets/scripts/src",
"css:watch": "nodemon -e scss -x \"npm run css:build\"",
"css:build": "npm run css:sass -s && npm run css:prefix -s && npm run css:min -s",
"css:sass": "node-sass --include-path scss assets/styles/scss/main.scss assets/styles/css/main.css",
"css:prefix": "postcss --use autoprefixer -b 'last 2 versions' assets/styles/css/*.css -d assets/styles/css/",
"css:min": "csso assets/styles/css/main.css assets/styles/css/main.min.css",
"js:build": "webpack --config webpack.config.prod.js",
"js:anaylse": "webpack --config webpack.config.prod.js --json | webpack-bundle-size-analyzer",
"js:test": "./node_modules/karma/bin/karma start --single-run --no-auto-watch tests/karma.config.js",
"js:test_watch": "./node_modules/karma/bin/karma start --auto-watch --no-single-run tests/karma.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jshjohnson/NumberRush.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "Josh Johnson <[email protected]> (http://github.com/jshjohnson)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"classnames": "^2.2.3",
"csso": "^1.6.4",
"eslint": "^0.21.2",
"eslint-plugin-react": "^3.6.2",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.4.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.0",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"lodash": "^4.5.1",
"node-sass": "^3.4.2",
"nodemon": "^1.9.0",
"opn-cli": "^3.1.0",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"postcss-cli": "^2.5.1",
"react-addons-test-utils": "^0.14.7",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.2",
"webpack-bundle-size-analyzer": "^2.0.1",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
}
}