-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "css-grid-playground",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"styled-components": "^2.0.0"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-eslint": "^7.2.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"jest-styled-components": "^2.1.1",
"react-scripts": "0.9.5",
"react-test-renderer": "^15.4.2",
"serve": "^5.0.1"
},
"scripts": {
"now-start": "cd build && serve -s ./",
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "cd build && now --static --name css-grid-playground",
"test": "react-scripts test --env=jsdom",
"test:cover": "yarn test -- --coverage && open coverage/lcov-report/index.html",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"precommit": "CI=true yarn test"
},
"jest": {
"testEnvironment": "node"
},
"alias": "www.cssgridplayground.com"
}