-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "gbjs",
"version": "1.0.0",
"main": "server.js",
"author": "James Hulse <james.hulse@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --colors --progress --hot",
"production": "webpack",
"start": "node server.js",
"test": "jest __tests__ --coverage --config jest.config.json"
},
"dependencies": {
"@types/jest": "^21.1.4",
"@types/node": "^8.0.46",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"bulma": "^0.6.0",
"classnames": "^2.2.5",
"css-loader": "^0.28.7",
"express": "^4.16.2",
"jest": "^21.2.1",
"node-sass": "^4.5.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"ts-jest": "^21.1.3",
"ts-loader": "^3.0.5",
"typescript": "^2.5.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}