-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "tictactoe",
"version": "1.0.0",
"description": "TicTacToe for FCC",
"main": "index.js",
"scripts": {
"test": "babel-tape-runner app/**/*.test.js | faucet",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server --content-base dist/",
"eslint": "eslint app --ext .js,.jsx"
},
"author": "S K",
"license": "ISC",
"private": true,
"dependencies": {
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.4.3",
"babel-tape-runner": "^2.0.0",
"bootstrap-sass": "^3.3.6",
"classnames": "^2.2.3",
"css-loader": "^0.23.1",
"eslint": "^2.0.0",
"eslint-plugin-react": "^3.16.1",
"extract-text-webpack-plugin": "^1.0.1",
"faucet": "0.0.1",
"html-webpack-plugin": "^2.8.1",
"jquery": "^2.2.0",
"postcss-loader": "^0.8.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"tape": "^4.4.0",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}