-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.28 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.28 KB
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
74
75
76
{
"name": "minesweeper-web",
"version": "1.0.0",
"description": "The web interface for the minesweeper-solver tools.",
"author": "Taylor DeMint",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^1.8.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^5.1.0",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^1.1.11",
"image-webpack-loader": "^3.6.0",
"path": "^0.12.7",
"source-map-loader": "^0.2.4",
"url-loader": "^1.1.2",
"webpack-node-externals": "^1.7.2",
"webpack-stream": "^3.2.0",
"worker-loader": "^2.0.0"
},
"main": "src/index.jsx",
"scripts": {
"clean": "rd /s /q dist && md dist",
"cleanTests": "rd /s /q src\\tests\\cases && md src\\tests\\cases",
"start": "node dist/bundle-back.node.js",
"build": "webpack --config webpack.config.js",
"watch": "webpack-dev-server --content-base ./ --hot",
"rebuild": "npm run clean && npm run build && npm run start",
"generateTests": "npm run cleanTests && node src/tests/testGenerator.node.js"
},
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/consystlab/minesweeper"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"testRegex": "/__tests__/.*\\.(js|jsx)$"
},
"dependencies": {
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"css-loader": "^0.28.11",
"immutable": "^3.8.1",
"node-sass": "^4.11.0",
"nodemailer": "^5.1.1",
"prop-types": "^15.7.1",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-immutable-proptypes": "^2.1.0",
"react-numeric-input": "^2.2.3",
"react-redux": "^5.1.1",
"react-select": "^3.0.8",
"redux": "^3.7.0",
"redux-undo": "^1.0.0-beta9-9-7",
"sass-loader": "^6.0.7",
"style-loader": "^0.18.2",
"systemjs": "^0.20.11",
"url-loader": "^2.1.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.11.3"
}
}