This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.51 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": "tic-tac-toe",
"version": "1.0.0",
"description": "´Tic Tac Toe with HyperApp",
"main": "public/bundle.js",
"scripts": {
"test": "tape --require babel-register test/**/*.js | tap-spec",
"css": "node-sass src/style.scss -o public/ && postcss --use autoprefixer -r public/style.css",
"webpack": "webpack -w",
"start": "npm run webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatejMazur/tic-tac-toe.git"
},
"keywords": [
"tic-tac-toe",
"game",
"functional",
"freecodecamp",
"fcc",
"fp",
"hyperapp",
"elm-architecture"
],
"author": "Matej Mazur",
"license": "ISC",
"bugs": {
"url": "https://github.com/MatejMazur/tic-tac-toe/issues"
},
"homepage": "https://github.com/MatejMazur/tic-tac-toe#readme",
"dependencies": {
"hyperapp": "^0.9.1"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.24.1",
"browser-sync": "^2.18.11",
"browser-sync-webpack-plugin": "^1.1.4",
"connect-history-api-fallback": "^1.3.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"node-sass": "^4.5.3",
"postcss-cli": "^4.0.0",
"ramda": "^0.23.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"webpack": "^2.5.1"
},
"quokka": {
"babel": true
}
}