-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "2048-demo",
"version": "1.0.0",
"description": "2048 game",
"main": "/app/main.js",
"scripts": {
"start": "webpack-dev-server --progress --config webpack.dev.config.js --colors",
"build": "rm dist -r && set NODE_ENV=production && webpack --config webpack.product.config.js --progress",
"test": "mocha --compilers js:babel-core/register test.js"
},
"author": "chenzhe",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"mocha": "^3.2.0",
"postcss-loader": "^1.3.3",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chenxxzhe/practice-2048.git"
},
"keywords": [
"2048"
],
"bugs": {
"url": "https://github.com/chenxxzhe/practice-2048/issues"
},
"homepage": "https://github.com/chenxxzhe/practice-2048#readme"
}